Customer

The Customer Model represents an instance of a customer in your online store. It stores essential information such as the customer's name, contact details (including email and phone number), and location code.

The Customer Model represents an instance of a customer in your online store. It stores essential information such as the customer's name, contact details (including email and phone number), and location code.

source_id
string

A unique identifier for the customer of your store platform. It could be the customer ID of your system, or a URL friendly name or slug which is unique in your system.

<= 32 characters
Example:
5127837778090
first_name
string

The customer's first name.

<= 256 characters
Example:
John
last_name
string

The customer's last name.

<= 256 characters
Example:
Doe
emails
array[string]

The customer's email.

<= 100 items
phones
array[string]

The customer's phone number.

<= 100 items
locale
string

The language code of the customer, eg: en-US.

<= 128 characters
Example:
en-US
Example
preparing...