Skip to content

Tiendanube - Get Customers

This module allows querying the customer base of a Tiendanube store. It can get a specific customer by ID or list customers with search and date filters.

  • Store ID: Your store ID
  • Access Token: OAuth2 access token
ParameterTypeRequiredDescription
credentials_idcredentialYesTiendanube credentials
customer_idstringNoSpecific customer ID
qstringNoSearch by name, email, or phone
created_at_minstringNoMinimum creation date
created_at_maxstringNoMaximum creation date
updated_at_minstringNoMinimum update date
updated_at_maxstringNoMaximum update date
per_pagenumberNoResults per page (default: 50)
pagenumberNoPage number (default: 1)
{
"success": true,
"customers": [...],
"count": 50,
"page": 1,
"per_page": 50,
"message": "50 customers retrieved"
}
  • id: Customer ID
  • name: Full name
  • email: Email
  • phone: Phone
  • identification: Identity document (DNI/CUIT/CPF)
  • note: Internal note
  • default_address: Main address
  • billing_address: Billing address
  • accepts_marketing: Accepts marketing
  • total_spent: Total spent
  • orders_count: Number of orders
  • created_at: Creation date
{
"customer_id": "12345"
}
{
"q": "cliente@email.com"
}
{
"created_at_min": "2024-01-01",
"created_at_max": "2024-01-31"
}
  • The q parameter searches in name, email, and phone
  • Customers include saved address information
  • total_spent is the customer’s total purchase amount
  • orders_count is the number of orders placed