This API handles retries for bulk card production and data prep requests, with the same parameters and request body that was sent originally.
| 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
{
"batchId": 81,
"issuerCode": "tst",
"persoCode": "tps"
}
| 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. |
{
"code": "00",
"description": "Card Production Request has been forwarded and creation in progress",
"correlationId": "4112af20fcee410fb9a07b61fc721a2c"
}
{
"code": "400",
"description": "BatchId for Batch Process does not exist",
"correlationId": "2aa197eda43540a4ad85b8d0bf570871"
}