Skip to content

Tiendanube - Update Customer

This module allows modifying the data of existing customers in Tiendanube: personal information, marketing preferences, and default address.

  • Store ID: Your store ID
  • Access Token: OAuth2 access token
ParameterTypeRequiredDescription
credentials_idcredentialYesTiendanube credentials
customer_idstringYesCustomer ID to update
emailstringNoNew email
namestringNoNew name
phonestringNoNew phone
identificationstringNoNew ID document (DNI/CUIT/CPF)
notestringNoNew internal note
accepts_marketingselectNoChange marketing preference
addressstringNoNew street
numberstringNoNew number
citystringNoNew city
provincestringNoNew province
zipcodestringNoNew postal code
countrystringNoNew country code
{
"success": true,
"customer": {...},
"customer_id": 12345,
"fields_updated": ["phone", "accepts_marketing"],
"message": "Customer 12345 updated successfully"
}
{
"customer_id": "12345",
"phone": "+54 11 5555-1234"
}
{
"customer_id": "12345",
"accepts_marketing": "false"
}
{
"customer_id": "12345",
"address": "Nueva Calle",
"number": "5678",
"city": "Cordoba",
"province": "Cordoba",
"zipcode": "5000"
}
{
"customer_id": "12345",
"note": "VIP Customer - Offer special discounts"
}
  • Only the provided fields are updated
  • The new email must be unique in the store
  • Updating the address modifies the default address
  • Notes are visible only to the seller