Guides

Update Cardholders

You can update the cardholder's information, such as their business email address and phone number, as per your needs.

Update Cardholder in the Dashboard

  1. Navigate to the Cards > Cardholders page.
  2. Select the cardholder you want to update.
  3. In the Action menu, click Update.
  4. Edit the details you want to change.
  5. Click Update to save the changes.

Update Cardholder Using the API

Request example

curl --request POST \
     --url https://api.sandbox.uqpay.tech/api/v1/issuing/cardholders/847c073d-ec73-4728-97f8-a2885494a53b \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'x-auth-token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJtYXN0ZXJfaWQiOiIwIiwiY3VzdG9tZXJfaWQiOiJjZWRjYjE0MS0xM2IwLTRlMzItOTlkZC00MzQ1NWI1M2Q3MzciLCJhY2NvdW50X2lkIjoiY2VkY2IxNDEtMTNiMC00ZTMyLTk5ZGQtNDM0NTViNTNkNzM3IiwiYXBpX3ZlcnNpb24iOiJWMS4wIiwiY2xpZW50X2lkIjoiMzZHTDBRUVJTSUVKR25xb2lXZUtJZSIsInVzZXJfaWQiOiIzNkdMMFFRUlNJRUpHbnFvaVdlS0llIiwiZW1haWwiOiIiLCJzY29wZSI6IiIsInVzZXJfbmFtZSI6IlRlc3QiLCJkaXJlY3RfaWQiOiIwIiwib25fYmVoYWxmX2lkIjoiIiwib25fYmVoYWxmX25hbWUiOiIiLCJidXNfdHlwZSI6MCwiaXAiOiIxOC4xNjIuMTg4LjEzMiIsImV4cCI6MTczNjI1MDg4OCwiaXNzIjoidXFwYXkifQ.aLzUk9DsuowIfgoDlXU4Z4m8NGQd4OvXBNGKYJlYzjo' \
     --header 'x-idempotency-key: 18723f72-f4de-4f9c-bb8e-ec7d1c4f32be' \
     --data '
{
  "country_code": "SG",
  "phone_number": "86685306"
}
'

Response example

{
  "cardholder_id": "847c073d-ec73-4728-97f8-a2885494a53b",
  "cardholder_status": "SUCCESS"
}