API Reference · Customers
Create a customer
Creates a new customer record.
POST
/v1/customersEmail must be unique per organization + livemode. Creating a customer also provisions a Stripe Customer on your connected account for use with future payments.
Returnscustomer object
Body parameters
emailstringRequiredCustomer email. Must be a valid RFC 5322 address.
first_namestringRequiredGiven name.
last_namestringRequiredFamily name.
phonestringOptional phone number.
company_namestringBusiness name shown on invoices.
notesstringFree-form internal notes.
metadataobjectUp to 20 arbitrary key/value pairs.
Errors
400
parameter_invalid_emailThe `email` field is not a valid email address.
409
resource_already_existsA customer with that email already exists in the current livemode.