Activate Card
Activate a physical card after delivery by providing the PAN and expiry date along with the card identifier (ID or token).
POST{baseUrl}/pcs/api/v1/activate-card
Payload
| Attribute | Type | Required | Description |
|---|---|---|---|
| cardId or cardToken | Integer | Yes | Card identifier. |
| pan | String | Yes | Full card number (PAN) printed on card. |
| expiryDate | String (MM/YY) | Yes | Card expiry as printed. |
Request Example
{
"cardId": 533,
"pan": "5408968100040422",
"expiryDate": "08/28"
}Response
| Field | Type | Description |
|---|---|---|
| cardId | Integer | Activated card ID. |
| cardStatus | Enum | ACTIVE. |
| statusReason | String | Reason (e.g., “new card”). |
200 — SUCCESS
{
"data": {
"cardId": 533,
"cardStatus": "ACTIVE",
"statusReason": "new card"
}
}