Skip to content

Tiendanube - Get Orders

This module allows querying orders from a Tiendanube store. It can get a specific order by ID or list orders with various filters such as status, customer, payment, shipping, and dates.

  • Store ID: Your store ID
  • Access Token: OAuth2 access token
ParameterTypeRequiredDescription
credentials_idcredentialYesTiendanube credentials
order_idstringNoSpecific order ID
statusselectNoStatus: open, closed, cancelled
payment_statusselectNoPayment status
shipping_statusselectNoShipping status
customer_idstringNoCustomer ID
qstringNoSearch by number, email, or name
created_at_minstringNoMinimum creation date
created_at_maxstringNoMaximum creation date
sort_byselectNoSorting
per_pagenumberNoResults per page (default: 50)
pagenumberNoPage number (default: 1)
  • pending: Pending
  • authorized: Authorized
  • paid: Paid
  • abandoned: Abandoned
  • refunded: Refunded
  • voided: Voided
  • unpacked: Unpacked
  • unfulfilled: Unfulfilled
  • shipped: Shipped
  • delivered: Delivered
{
"success": true,
"orders": [...],
"count": 50,
"page": 1,
"per_page": 50,
"message": "50 orders retrieved"
}
  • id: Order ID
  • number: Order number
  • status: General status
  • payment_status: Payment status
  • shipping_status: Shipping status
  • customer: Customer data
  • products: Order products
  • total: Order total
  • subtotal: Subtotal
  • shipping: Shipping cost
  • discount: Applied discount
  • shipping_address: Shipping address
  • billing_address: Billing address
{
"order_id": "123456"
}
{
"payment_status": "pending",
"sort_by": "created_at-desc"
}
{
"customer_id": "789",
"per_page": 100
}
{
"shipping_status": "unfulfilled",
"status": "open"
}
  • Orders include full product and address information
  • The number field is the number visible to the customer
  • Prices are in the store’s currency
  • Multiple filters can be combined