Retry Bulk Card Production and Data Prep (COPY)
This API handles retries for bulk card production and data prep requests, with the same parameters and request body that was sent originally.
Request Message description
Field # | Field name | Data type | Max length | Required | Description |
---|---|---|---|---|---|
1 | branchId | int | true | Bulk Card Production Batch ID | |
2 | issuerCode | string | false | Issuer Code for Data Prep | |
3 | persoCode | string | false | Perso Code for Data Prep |
POST /card-management/api/v1/fintech-cms/cpdp/retry
Authorization = Bearer Token
Sample Request
{
"batchId": 81,
"issuerCode": "tst",
"persoCode": "tps"
}
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": "Card Production Request has been forwarded and creation in progress",
"correlationId": "4112af20fcee410fb9a07b61fc721a2c"
}
Sample Response (failure)
{
"code": "400",
"description": "BatchId for Batch Process does not exist",
"correlationId": "2aa197eda43540a4ad85b8d0bf570871"
}
Updated 8 months ago