Create a new cardholder for your card issuing program. The cardholder will be created with ACTIVE status. You can optionally include KYC documents in the request body - if provided, the kycStatus will be set to PENDING, otherwise it defaults to UNSUBMITTED.
ACTIVE status. You can optionally include KYC documents in the request body - if provided, the kycStatus will be set to PENDING, otherwise it defaults to UNSUBMITTED.
| Field | Type | Description |
|---|---|---|
firstName | string | Cardholder’s first name (1-100 chars) |
lastName | string | Cardholder’s last name (1-100 chars) |
email | string | Email address (unique per app) |
phone | string | Phone number with country code |
dateOfBirth | string | Date of birth (YYYY-MM-DD) |
country | string | ISO 3166-1 alpha-2 country code (2 chars) |
| Field | Type | Description |
|---|---|---|
externalId | string | Your platform’s cardholder ID (unique per app) |
gender | string | Gender (MALE, FEMALE, OTHER) |
address | string | Street address |
city | string | City |
state | string | State or province |
zipCode | string | Postal/ZIP code |
kyc | object | KYC documents (optional, see below) |
kycStatus will be set to PENDING. All fields within the kyc object are optional - use the Submit KYC endpoint for mandatory document submission.
| Field | Type | Required | Description |
|---|---|---|---|
documentType | string | No | PASSPORT, NATIONAL_ID, or DRIVER_LICENSE |
documentNumber | string | No | Document identification number |
idFrontUrl | string | No | URL to the front image of the ID document |
idBackUrl | string | No | URL to the back image (recommended for ID cards) |
idSelfieUrl | string | No | URL to a selfie photo holding the ID document |
kycStatus: "PENDING" and verification will be processed automatically.JWT access token obtained from /auth/token
Cardholder's first name
1 - 100Cardholder's last name
1 - 100Cardholder's email address (unique per app)
255Phone number with country code
6 - 20Date of birth (YYYY-MM-DD)
ISO 3166-1 alpha-2 country code
2Your platform's cardholder ID (unique per app)
100Gender (optional)
MALE, FEMALE, OTHER Street address
255City
100State or province
100Postal/ZIP code
20Optional KYC documents. When any KYC data is provided, kycStatus will be set to PENDING. All fields are optional - use the Submit KYC endpoint for mandatory document submission.