Unblock Card
This API handles requests to unblock both Debit and Prepaid Cards either through Active Active (Postilion) or Non Active Active(Postcard CMS).
Request Message description
Field # | Field name | Data type | Max length | Required | Description |
---|---|---|---|---|---|
1 | pan | string | 16 to 19 | true | Card Personal Account Number (PAN) |
2 | seqNr | string | 3 to 3 | true | Card Sequence Number |
3 | expiryDate | string | 4 to 4 | true | Card Expiry Date |
4 | rid | string | 1 to 11 | false | Receiving Institution Identifier for Postilion |
Request Parameters description
Parameter # | Parameter Name | Data Type | Required | Description |
---|---|---|---|---|
1 | isActiveActive | boolean | true | true - request is routed through Postilion Service false - request is routed through Postcard CMS ** If the application is configured to restrict non active active requests, the value provided by the client may be overridden by the system and set to true |
POST /card-management/api/v1/card/unblock
Authorization = Bearer Token
Sample Request
{
"pan": "5060990000000151002",
"seqNr": "001",
"expiryDate": "5004"
}
Response Message field description
Field # | Field name | Description |
---|---|---|
1 | code | Internal Response Code |
2 | description | Successful or Error Message |
3 | correlationId | Request identifier |
4 | errors | Errors array if any errors exists. |
Sample Response (success)
{
"code": "00",
"description": "Successful",
"correlationId": "5daa9a3f6ce9497d84c559aea9f924b3"
}
Sample Response (failure)
{
"code": "400",
"description": "[not a valid card number]",
"errors": [
{
"message": "not a valid card number",
"fieldName": "pan"
}
]
}
Updated 7 months ago