Update Card Delivery
Update a card’s delivery status.
POST{baseUrl}/pcs/api/v1/update-delivery-status
Payload
| Attribute | Type | Required | Description |
|---|---|---|---|
| cardId | Integer | Yes | Card ID. |
| estimateDeliveryTime | String (ISO 8601) | No | Estimated delivery time. |
| deliveryStatus | Enum | Yes | Delivery status (e.g., DELIVERED). |
Request Example
{
"cardId": 5,
"estimateDeliveryTime": "2024-12-24T12:00",
"deliveryStatus": "DELIVERED"
}Response
| Field | Type | Description |
|---|---|---|
| cardId | Integer | Card ID. |
| cardToken | Number | Card token. |
| cardStatus | Enum | Will be PENDING_VERIFICATION after delivery. |
| statusReason | String | Reason (e.g., “Approved”). |
| deliveryStatus | Enum | DELIVERED. |
| cardManufacturingStatus | Enum | MANUFACTURED. |
| estimatedDeliveryTime | String | Delivery estimate. |
200 — SUCCESS
{
"data": {
"cardId": 115,
"cardToken": 616929771,
"cardStatus": "PENDING_VERIFICATION",
"statusReason": "Approved",
"deliveryStatus": "DELIVERED",
"cardManufacturingStatus": "MANUFACTURED",
"estimatedDeliveryTime": "2024-12-24T12:00:00"
}
}