UnBlock a Card
Reactivate a blocked card (requires reason).
Request URI
POST /issuing/card/unblock
Request Body
Refer to : common
Biz_data :
Name
Type
Description
card_token*
string
Card Token
reason*
string
Reason
Request Example
{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "request_id": "bFAAad92-e61f-a1Cb-B2A8-FBBeeacc",
    "timestamp": "2025-04-07 13:56:43",
    "format": "JSON",
    "version": "2.0",
    "sign_type": "RSA",
    "biz_data": {
        "card_token": "450620141926",
        "reason": "test"
    },
    "random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!Response
{
    "code": "10000",
    "msg": "Success"
}{
    "code": "40002",
    "msg": "Business Failed",
    "sub_code": "invalid-signature",
    "sub_msg": "invalid signature"
}Last updated
Was this helpful?