Skip to content

Tiendanube - Create Customer

This module allows registering new customers in a Tiendanube store with their personal data, marketing preferences, and optionally a default address.

  • Store ID: Your store ID
  • Access Token: OAuth2 access token
ParameterTypeRequiredDescription
credentials_idcredentialYesTiendanube credentials
emailstringYesCustomer email
namestringYesFull name
phonestringNoPhone
identificationstringNoID document (DNI/CUIT/CPF)
notestringNoInternal note
accepts_marketingbooleanNoAccepts marketing
addressstringNoStreet
numberstringNoNumber
floorstringNoFloor/Apartment
citystringNoCity
provincestringNoProvince/State
zipcodestringNoPostal code
countrystringNoCountry code (AR, BR, MX, etc.)
{
"success": true,
"customer": {...},
"customer_id": 12345,
"email": "cliente@email.com",
"message": "Customer 12345 created successfully"
}
{
"email": "juan@email.com",
"name": "Juan Perez"
}
{
"email": "maria@email.com",
"name": "Maria Garcia",
"phone": "+54 11 1234-5678",
"identification": "12345678",
"accepts_marketing": true
}
{
"email": "carlos@email.com",
"name": "Carlos Lopez",
"phone": "+54 11 9876-5432",
"address": "Av. Corrientes",
"number": "1234",
"floor": "5to B",
"city": "Buenos Aires",
"province": "Buenos Aires",
"zipcode": "1043",
"country": "AR"
}
  • The email must be unique in the store
  • Country codes are ISO 3166-1 alpha-2 (AR, BR, MX, CL, CO, etc.)
  • The identification field stores the local identity document
  • If accepts_marketing: true, the customer will receive promotional emails