v1
latestOpenAPI 3.0.32026-07-264469137.7 KBCustomers
Create a customer
Creates a customer. A customer groups a buyer's payments, subscriptions, and saved payment methods under one record. Only email is required. Requires the customers:write scope.
post/v1/customers
Request body
Example request
{
"email": "jane@example.com",
"name": "Jane Doe",
"phone_number": "+2348012345678",
"metadata": {
"plan": "pro"
}
}Response
Customer created
Example response
{
"customer_id": "cust_1a2b3c4d5e6f",
"email": "jane@example.com",
"name": "Jane Doe",
"phone_number": "+2348012345678",
"metadata": {
"plan": "pro"
},
"created_at": "2026-01-24T12:00:00.000Z",
"updated_at": "2026-01-24T12:00:00.000Z"
}