Create Customer
Customers
Create Customer
Create a new customer under the authenticated merchant
POST
Create Customer
Overview
Create a customer record that can be referenced bycustomer_id in funding account, transfer, and USD virtual account requests. Customers are scoped to the authenticated merchant.
For an individual customer, create the customer record, complete tier 1 verification with POST /v1/customers/{id}/tier1-verification, then submit individual tier 2 KYC with POST /v1/customers/{id}/tier2-verification.
For a business or entity, create the customer record first, then submit tier 2 KYB with POST /v1/customers/{id}/tier2-verification using customer_type: "business" and the business KYB fields. The first_name and last_name fields can be omitted for business customer records.
Authentication
Your merchant API key
Request Body
Customer email address (must be valid)Example:
customer@example.comEmail is normalized to lowercase and trimmed before storage.
Customer first name (1–100 characters)Example:
JohnCustomer last name (1–100 characters)Example:
DoeRequest Example
Response
Unique customer identifier (UUID)
Customer email address
Customer first name
Customer last name
Whether the customer has passed verification.
false on creation.Whether tier 1 KYC has been completed.
false on creation.Whether tier 2 KYC has been completed.
false on creation.Customer capabilities and their current status. Empty on creation until verification starts.
Current blocking verification or capability issues. Empty on creation.
When the customer was created (ISO 8601 timestamp)
When the customer was last updated (ISO 8601 timestamp)
Success Response
Error Responses
Notes
- Customers are scoped to the authenticated merchant — the same email can exist under different merchants.
- Once created, a customer can be referenced by
customer_idin funding account requests. - Business/entity customers use the same customer object and response shape as individual customers. Submit business KYB before creating a USD virtual account for a business beneficiary.