Skip to content

BigCommerce - Create Customer

This module allows registering new customers in a BigCommerce store with their personal data and optionally an associated address.

  • Store Hash: Unique hash of your BigCommerce store
  • Access Token: API V3 access token
ParameterTypeRequiredDescription
credentials_idcredentialYesBigCommerce credentials
emailstringYesCustomer email
first_namestringYesFirst name
last_namestringYesLast name
companystringNoCompany
phonestringNoPhone
customer_group_idnumberNoCustomer group ID
address1stringNoAddress line 1
citystringNoCity
statestringNoState/Province
zipstringNoPostal code
country_codestringNoCountry code (e.g.: US, ES, MX)
{
"success": true,
"customer": {...},
"customer_id": 789,
"message": "Customer 789 created successfully"
}
{
"email": "nuevo@cliente.com",
"first_name": "Juan",
"last_name": "Perez"
}
{
"email": "empresa@cliente.com",
"first_name": "Maria",
"last_name": "Garcia",
"company": "Empresa ABC",
"phone": "+34 600 123 456",
"customer_group_id": 3
}
{
"email": "completo@cliente.com",
"first_name": "Carlos",
"last_name": "Lopez",
"address1": "Calle Principal 123",
"city": "Madrid",
"state": "Madrid",
"zip": "28001",
"country_code": "ES"
}
  • The V3 API requires sending data as an array of customers
  • The email must be unique in the store
  • If an address is provided, all address fields are individually optional
  • Country codes must be ISO 3166-1 alpha-2 (e.g.: US, ES, MX, AR)
  • The customer group must already exist