Customer Create Api
Creates a new customer in the system.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Schema for creating or updating a customer.
Attributes: name (str): The name of the customer. contact_name (Optional[str]): The name of the contact person for the customer. email (Optional[str]): The primary email address of the customer. additional_emails (Optional[List[str]]): A list of additional email addresses for the customer. billing_emails (Optional[List[str]]): A list of email addresses used for billing purposes. phone_number (Optional[str]): The customer's phone number, including country code. currency (Optional[str]): The currency used by the customer, defaulting to USD. tax_id (Optional[str]): The customer's tax identification number. billing_address (Optional[AddressSchema]): The customer's billing address. shipping_address (Optional[AddressSchema]): The customer's shipping address. external_id (Optional[str]): An external identifier for the customer.
A list of additional customer email addresses
The customer's billing address.
Billing email addresses
The name of the contact person
100
3
50
An optional external identifier for the customer. This can be used to link the customer to an external system.
Customer name
100
Customer phone number with country code
20
The customer's shipping address.
Customer tax id
9
Response
Schema for retrieving customer information.
Attributes: uuid (UUID): The unique identifier for the customer. name (str): The name of the customer. contact_name (Optional[str]): The name of the contact person for the customer. email (Optional[str]): The primary email address of the customer. additional_emails (Optional[List[str]]): A list of additional email addresses for the customer. billing_emails (Optional[List[str]]): A list of email addresses used for billing purposes. phone_number (Optional[str]): The customer's phone number, including country code. currency (Optional[str]): The currency used by the customer. tax_id (Optional[str]): The customer's tax identification number. billing_address (Optional[AddressSchema]): The customer's billing address. shipping_address (Optional[AddressSchema]): The customer's shipping address. external_id (Optional[str]): An external identifier for the customer, aliased as 'external_customer_id'.
A list of additional email addresses for the customer.
The customer's billing address.
A list of email addresses used for billing purposes.
The name of the contact person for the customer.
The currency used by the customer.
The primary email address of the customer.
An optional external identifier for the customer. This can be used to link the customer to an external system.
The name of the customer.
The customer's phone number, including country code.
The customer's shipping address.
The customer's tax identification number.
The unique identifier for the customer.