Renew Reported Card
After review, the SaaS app can renew a reported card (e.g., damaged/expired). Renewal triggers a new issuance flow.
POST{baseUrl}/pcs/api/v1/renew-card
Payload
| Attribute | Type | Required | Description |
|---|---|---|---|
| cardId | Integer | Yes | Original card ID. |
| cardToken | Integer | No | Original card token (optional if cardId provided). |
| remarks | String | No | Reason/remarks for renewal. |
Request Example
{
"cardId": 5,
"cardToken": 369633943,
"remarks": "Card was stolen"
}Response
| Field | Type | Description |
|---|---|---|
| cardId | Integer | New card ID. |
| cardToken | Integer | New card token. |
| status | Enum | Will be ISSUANCE_IN_PROGRESS. |
| message | String | Action message. |
200 — SUCCESS
{
"data": {
"cardId": 1,
"cardToken": 771231868,
"status": "ISSUANCE_IN_PROGRESS",
"message": "Card renew successfully!"
}
}