v1
latestOpenAPI 3.0.22026-07-26123510445.2 KBUpdate Cardholder
Updates the specified issuing cardholder object by setting the values of the parameters passed. Any parameters not provided will be left unchanged (first name and last name cannot be accepted and updated).
Path parameters
Universally unique identifier (UUID v4) of a resource.
Headers
Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.
A unique identifier (UUID) used to maintain operation idempotency, ensuring that repeated executions of the same operation do not result in unintended effects or duplication. It helps preserve data consistency in the face of network errors, retries, or failures.
Request body
Example request
{
"country_code": "SG",
"email": "demo@example.com",
"phone_number": "86683306",
"date_of_birth": "1990-01-01",
"gender": "MALE",
"nationality": "SG",
"residential_address": {
"country": "SG",
"state": "Singapore",
"city": "Singapore",
"district": "Buona Vista",
"line1": "9 N Buona Vista Dr",
"line2": "THE METROPOLIS",
"line_en": "9 N Buona Vista Dr, THE METROPOLIS",
"postal_code": "138666"
},
"identity": {
"type": "PASSPORT",
"number": "E12345678"
},
"kyc_verification": {
"method": "THIRD_PARTY",
"kyc_proof": {
"provider": "SUMSUB",
"reference_id": "sumsub_ref_1234567890",
"documents": [
{
"file_id": "b3d9d2d5-4c12-4946-a09d-953e82sed2b0",
"report_type": "IDV"
}
]
}
},
"document_type": "pdf"
}Response
Cardholder update successfully.
Example response
{
"cardholder_id": "7c4ff2cd-1bf6-4aaa-bf16-266771425011",
"idv_verification_url": "https://idv.sumsub.com/verify/abc123",
"idv_url_expires_at": "2026-04-10T10:00:00+08:00"
}