Create a customer
POST https://{handle}.myshopline.com/admin/openapi/v20250601/customers.json
handle
: The store's unique identifier, which is the prefix of the store's domain name. For example, if a store's domain name is open001.myshopline.com
, the store handle is open001
.Create a new customer in the store. You need to provide detailed information such as the customer's email or mobile phone number.
Request Headers
- Content-Type requiredThe value of this field is fixed to
application/json; charset=utf-8
- Authorization string requiredThe access token for the API. Please refer to App authorization to obtain the access token, and then put the obtained access token into the API request header in Bearer Token.Example:
Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw
Request Body
customerobject
Customer Information.accepts_marketing booleanWhether the customer accepts to subscribe to marketing information via email. The customer's email address is required when modifying the subscription status.DEPRECATED: This parameter is deprecated from API version v20250601.Example:true
addressesobject[]
Customer address list.Maximum size: 50address1 stringCustomer address information such as the street address or a post office box number.Maximum length: 255Example:7720 Cherokee Road
address2 stringThe second line of the address. This typically includes information such as apartment, suite, or unit number.Maximum length: 255Example:Apartment 2
city stringThe city in the address.Maximum length: 64Example:Hagerman
company stringThe company name.Maximum length: 255Example:Joy
country stringThe country or region in the address.Maximum length: 64Example:United States
country_code stringA two-letter country or region code that follows the ISO 3611-1 (alpha 2) standard, used to identify a specific country or region in the address.Example:US
.Example:US
country_name stringStandardized country or region name in addresses.DEPRECATED: This parameter is deprecated from API version v20250601.Example:United States
default booleanWhether the address is set as the default address. Valid values are:true
: The default addressfalse
: Not the default address
Default value:false
Example:true
first_name stringThe customer's first name.Maximum length: 128Example:Bob
last_name stringThe customer's last name.Maximum length: 128Example:Norman
name stringThe customer's nickname.DEPRECATED: This parameter is deprecated from API version v20250601.Example:NormanBob
phone stringThe customer's mobile phone number.Maximum length: 20Example:001467326483
province stringThe province in the address.Maximum length: 64Example:Kentucky
province_code stringThe code for the province in the address, which can be a custom code or a two-digit ISO 3166-2 international code.Example:KY
zip stringThe postal code information of the address.Maximum length: 64Example:40202
birthday stringCustomer's birthday. Format: yyyyMMdd.Example:20210831
Example:19970102
email stringCustomer's email.Maximum length: 50Example:gungcherny@gamil.com
email_marketing_consentobject
Email marketing subscription information.consent_collected_from stringSubscription information source.Maximum length: 50consent_updated_at stringThe date and time when the subscription was updated. Format: ISO 8601.Example:2024-08-31T02:20:26+08:00
Example:2022-09-07T10:53:31+08:00
opt_in_level integerSubscription method. Valid values are:0
: unknown1
: single opt-in2
: confirmed opt-in
The default value depends on whether the Marketing options setting is enabled in the SHOPLINE Admin.- Enabled: Default value is
2
. - Disabled: Default value is
1
.
Example:1
state integerEmail subscription status. Valid values are:0
: Unsubscribed1
: Subscribed2
: Not subscribed3
: Awaiting confirmation
This field must be passed when any other subfields underemail_marketing_consent
have values.Example:1
first_name stringThe customer's first name.Maximum length: 128Example:Bob
gender integerCustomer's gender. Valid values are:0
: unknown1
: male2
: female3
: secret
Default value:0
Example:1
last_name stringThe customer's last name.Maximum length: 128Example:Norman
multipass_identifier stringA unique identifier for the customer that logs in with Multipass login.Maximum length: 100note stringMerchant's notes on the customer.Maximum length: 1000Example:Placed an order that had a fraud warning
password stringCustomer's password. If it is passed in, the customer state changes from “not invited” to “registered”. The customer state is represented by thecustomer.state
in the response.Password length: 6-18 charactersAllowed characters: uppercase letters, lowercase letters, numbers, and symbolsExample:31233
password_confirmation stringThe customer's second password input for confirmation.Password length: 6-18 charactersAllowed characters: uppercase letters, lowercase letters, numbers, and symbolsExample:31233
phone stringThe customer's mobile phone number.Maximum length: 20Example:001467326483
sms_marketing_consentobject
SMS marketing subscription information.consent_collected_from stringSubscription information source.Maximum length: 50consent_updated_at stringThe date and time when the subscription was updated. Format: ISO 8601.Example:2024-08-31T02:20:26+08:00
Example:2022-09-07T10:53:31+08:00
opt_in_level integerSubscription method. Valid values are:0
: unknown1
: single opt-in2
: confirmed opt-in
Example:1
state integerSMS subscription status. Valid values are:0
: Unsubscribed1
: Subscribed2
: Not subscribed
This field must be passed when any other subfields undersms_marketing_consent
have values.Example:1
tags stringAdd tags for customers, separating different tags with commas.Maximum number of tags allowed: 100Maximum length per tag: 128Maximum length total: 1000Example:loyal
verified_email booleanWhether the email has been verified. Valid values are:true
: verifiedfalse
: unverified
Default value:false
Example:true
Response
- 200
- 401
- 429
For more information about status codes, see Http status code.
Response Headers
traceId
traceId
Response Body
customerobject
Customer Information.accepts_marketing booleanWhether the customer accepts to subscribe to marketing information via email. The customer's email address is required when modifying the subscription status.DEPRECATED: This parameter is deprecated from API version v20250601.Example:true
accepts_marketing_updated_at stringThe time when the customer renewed their subscription to email marketing.DEPRECATED: This parameter is deprecated from API version v20250601.Example:2022-05-31T15:32:46+08:00
accepts_mobile_marketing booleanWhether the customer accepts to subscribe to marketing information via mobile phone number.DEPRECATED:This parameter is deprecated from API version v20250601.Example:true
accepts_mobile_marketing_updated_at stringThe time when the customer updated his subscription to mobile phone number marketing.This parameter is deprecated from API version v20250601.Example:2022-05-31T15:32:46+08:00
addressesobject[]
Customer address list.address1 stringCustomer address information such as the street address or a post office box number.Example:7720 Cherokee Road
address2 stringThe second line of the address. This typically includes information such as apartment, suite, or unit number.Example:Apartment 2
city stringThe city in the address.Example:Hagerman
company stringThe company name.Example:Joy
country stringThe country or region in the address.Example:United States
country_code stringA two-letter country or region code that follows the ISO 3611-1 (alpha 2) standard, used to identify a specific country or region in the address.Example:US
customer_id stringThe unique identifier for customer.Example:4201825054
default booleanWhether the address is set as the default address. Valid values are:true
: Default address.false
: No default address.
Example:true
first_name stringThe customer's first name.Example:Bob
id stringThe unique identifier for the addresses.Example:207119551
last_name stringThe customer's last name.Example:Norman
phone stringThe customer's mobile phone number.Example:001467326483
province stringThe province in the address.Example:Kentucky
province_code stringThe code for the province in the address, which can be a custom code or a two-digit ISO 3166-2 international code.DEPRECATED: This parameter is deprecated from API version v20250601Example:KY
province_code_v2 stringThe code for the province in the address, which can be a custom code or a two-digit ISO 3166-2 international code.Example:KY
zip stringThe postal code information of the address.Example:40202
asid stringThe unique identifier for the facebook login.Example:481007156599455
birthday stringCustomer's birthday.Example:19970102
created_at stringThe data and time when the customer was created.Example:2022-09-07T10:53:31+08:00
currency stringThe currency used by the customer to place an order. The value of this parameter is a three-letter currency code that follows the ISO 4217 standard.Example:USD
default_addressobject
Default address.address1 stringCustomer address information such as the street address or a post office box number.Example:7720 Cherokee Road
address2 stringThe second line of the address. This typically includes information such as apartment, suite, or unit number.Example:Apartment 2
city stringThe city in the address.Example:Hagerman
company stringThe company name.Example:Joy
country stringThe country or region in the address.Example:United States
country_code stringA two-letter country or region code that follows the ISO 3611-1 (alpha 2) standard, used to identify a specific country or region in the address.Example:US
customer_id stringThe unique identifier for customer.Example:4201825054
default booleanWhether the address is set as the default address.Example:true
first_name stringThe customer's first name.Example:Bob
id stringThe unique identifier for the addresses.Example:207119551
last_name stringThe customer's last name.Example:Norman
phone stringThe customer's mobile phone number.Example:001467326483
province stringThe province in the address.Example:Kentucky
province_code stringThe code for the province in the address, which can be a custom code or a two-digit ISO 3166-2 international code.DEPRECATED: This parameter is deprecated from API version v20250601Example:KY
province_code_v2 stringThe code for the province in the address, which can be a custom code or a two-digit ISO 3166-2 international code.zip stringThe postal code information of the address.Example:40202
email stringCustomer's email.Example:gungcherny@gamil.com
email_marketing_consentobject
Email marketing subscription information.consent_collected_from stringSubscription information source.consent_updated_at stringThe date and time when the subscription was updated. Format: ISO 8601.Example:2022-09-07T10:53:31+08:00
opt_in_level integerSubscription method. Valid values are:0
: unknown1
: single opt-in2
: confirmed opt-in
Example:1
state integerEmail subscription status. Valid values are:0
: Unsubscribed1
: Subscribed2
: Not subscribed3
: Awaiting confirmation
Example:1
email_subscribe_flag integerThe final subscription status of the customer's email. Returned based on theemail_marketing_consent
related input information. Valid values are:0
: Unsubscribed1
: Subscribed2
: Not subscribed
Example:1
first_name stringThe customer's first name.Example:Bob
gender stringCustomer's gender. Valid values are:0
: unknown1
: male2
: female
Example:female
id stringThe customer's unique ID .Example:4201825054
language stringCustomer language.Example:en
last_name stringThe customer's last name.Example:Norman
last_order_id stringThe unique identifier for the customer's last recent order.Example:2005473211984312275741
last_order_name stringThe most recent custom order number.Example:#20269M
mobile_subscribe_flag integerThe final subscription status of the customer's mobile phone number. Returned based on thesms_marketing_consent
related input information. Valid values are:0
: Unsubscribed1
: Subscribed2
: Not subscribed
multipass_identifier stringA unique identifier for the customer that's used with Multipass login.note stringMerchant's notes on the customer.Example:Placed an order that had a fraud warning
orders_count longThe order quantity by the customer.Example:12
phone stringThe customer's mobile phone number.Example:001467326483
sms_marketing_consentobject
SMS marketing subscription information.consent_collected_from stringSubscription information source.consent_updated_at stringThe date and time when the subscription was updated. Format: ISO 8601.Example:2022-09-07T10:53:31+08:00
opt_in_level integerSubscription method. Valid values are:0
: unknown1
: single opt in2
: confirmed opt in
Example:1
state integerSMS subscription status. Valid values are:0
: Unsubscribed1
: Subscribed2
: Not subscribed3
: Awaiting confirmation
Example:1
social_customer arrayThe customer's unique ID on social media.DEPRECATED: This parameter is deprecated from API version v20250601Example:[6612273988815231]
state integerCustomer's status. Valid values are:0
: Blacklist1
: Not invited2
: Invited3
: Registered
Example:2
tags stringCustomer's tags.Example:loyal
total_spent stringTotal amount spent by the customer.Example:100
verified_email booleanWhether the email has been verified. Valid values are:true
: verifiedfalse
: unverified
API Explorer
Debugger
Examples
Was this article helpful to you?