Skip to main content

Event metadata

  • name: ISSUING
  • types:
    • cardholder.updated: Triggered when a cardholder’s information is updated.

Request body

FieldsData TypeDescription
event_idstringA unique ID for the event.
event_namestringEvent name.
event_typestringEvent type.
source_idstringCardholder id.
versionstringAPI Version number.
dataobjectRelated business objects.

data fields

FieldsData TypeDescription
cardholder_idstringThe updated cardholder’s unique identifier.
emailstringThe cardholder’s email address.
first_namestringThe cardholder’s first name.
last_namestringThe cardholder’s last name.
date_of_birthstringThe cardholder’s date of birth in yyyy-mm-dd format.
country_codestringThe cardholder’s country code.
nationalitystringThe cardholder’s nationality in ISO 3166-1 alpha-2 format.
phone_numberstringThe cardholder’s phone number.
cardholder_statusstringCurrent status: SUCCESS | PENDING | INCOMPLETE | FAILED.
idv_statusstringIDV verification status: PENDING | PASSED | FAILED. Empty if N/A.
idv_providerstringIDV provider name (e.g., SUMSUB). Empty if N/A.
create_timestringCardholder creation time in ISO 8601 format.
update_timestringLast update time in ISO 8601 format.

Notification example

{
    "version": "V1.6.0",
    "event_name": "ISSUING",
    "event_type": "cardholder.updated",
    "event_id": "8e1025b9-310b-44be-8199-89b6a8d30b72",
    "source_id": "ab86005e-6462-403d-8d4b-ed5bf89a3350",
    "data": {
        "cardholder_id": "ab86005e-6462-403d-8d4b-ed5bf89a3350",
        "cardholder_status": "INCOMPLETE",
        "country_code": "SG",
        "create_time": "2025-12-26T14:36:38+08:00",
        "date_of_birth": "1990-01-01",
        "email": "demo@exam1ple.com",
        "first_name": "UQPAY",
        "idv_provider": "SUMSUB",
        "idv_status": "PENDING",
        "last_name": "PTE",
        "nationality": "SG",
        "phone_number": "86653306",
        "update_time": "2026-04-03T17:15:28+08:00"
    }
}