Update Card Linked Account
The SaaS application can update the linked fund account of a customer’s card.
POST{baseUrl}/pcs/api/v1/update-card-account
Payload
| Attribute | Type | Required | Description |
|---|---|---|---|
| cardId | Integer | Yes | Card identifier. |
| accountId | Integer | Yes | Account ID to link. |
Request Example
{
"cardId": 4,
"accountId": 16
}Response
| Field | Type | Description |
|---|---|---|
| accountId | Integer | Linked account ID of card. |
| remarks | String | Remarks from card. |
200 — SUCCESS
{
"data": {
"accountId": 1691,
"remarks": "remarks of card"
}
}