🚀 VaultsPay API v1 is live. See what's new →
Payment CardsUpdate Card Linked Account

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

AttributeTypeRequiredDescription
cardIdIntegerYesCard identifier.
accountIdIntegerYesAccount ID to link.
Request Example
{
  "cardId": 4,
  "accountId": 16
}

Response

FieldTypeDescription
accountIdIntegerLinked account ID of card.
remarksStringRemarks from card.
200 — SUCCESS
{
  "data": {
    "accountId": 1691,
    "remarks": "remarks of card"
  }
}