For the complete documentation index, see llms.txt. This page is also available as Markdown.

Card Phone Update

Updates the phone number associated with the card (available for certain card products).

Endpoint: POST /{san}/update-phone

Path Parameters:

  • san - Secure Account Number (card identifier)

Content-Type: application/json

Request Body:

{
  "zoneNumber": "+48",
  "phoneNumber": "123456789"
}

Request Parameters:

Field
Type
Required
Description

zoneNumber

String

Yes

international country calling code with +

phoneNumber

String

Yes

national significant number

Response:

{
  "success": true,
  "message": "card update phone success"
}

Last updated