v1
latestOpenAPI 3.0.02026-07-243678114.1 KBCustomers
Create a Customer
The Create a Customer endpoint allows you to create a new customer record within your organization. This endpoint requires a payload that includes key details about the customer, such as their email and wallet address.
📘 Note
If a customer makes a payment without being pre-registered, the system automatically creates a customer record during the checkout process.
post/v1/customers
Request body
Response
OK
Example response
{
"created_at": "2023-03-15T08:30:00Z",
"customer_ident": "CUST123",
"email": "example@email.com",
"id": "123456789",
"last_payment_date": "2023-03-20T12:00:00Z",
"name": "John Doe",
"organisation_id": "ORG123",
"payments_count": 5,
"updated_at": "2023-03-25T10:45:00Z",
"wallet_address": "0x4bbeEB066eD09B7AEd07bF39EEe0460DFa261520"
}