Tiendanube - Update Order
Description
Section titled “Description”This module allows modifying existing orders in Tiendanube: change status, add seller notes, and mark as shipped with tracking information.
Configuration
Section titled “Configuration”Required Credentials
Section titled “Required Credentials”- Store ID: Your store ID
- Access Token: OAuth2 access token
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credential | Yes | Tiendanube credentials |
| order_id | string | Yes | Order ID to update |
| status | select | No | Change status (open, close, cancel) |
| owner_note | string | No | Seller note (internal) |
| shipping_status | select | No | Mark as shipped |
| tracking_number | string | No | Tracking number |
| tracking_url | string | No | Tracking URL |
| shipping_company | string | No | Shipping company |
Output
Section titled “Output”{ "success": true, "order": {...}, "order_id": 123456, "fields_updated": ["status", "fulfillment"], "fulfillment": {...}, "message": "Order 123456 updated successfully"}Usage Example
Section titled “Usage Example”Close order
Section titled “Close order”{ "order_id": "123456", "status": "close"}Add seller note
Section titled “Add seller note”{ "order_id": "123456", "owner_note": "Customer requested gift wrapping"}Mark as shipped with tracking
Section titled “Mark as shipped with tracking”{ "order_id": "123456", "shipping_status": "shipped", "tracking_number": "OC123456789AR", "tracking_url": "https://correoargentino.com.ar/tracking/OC123456789AR", "shipping_company": "Correo Argentino"}Cancel order
Section titled “Cancel order”{ "order_id": "123456", "status": "cancel"}API Used
Section titled “API Used”- Status Endpoint:
POST /v1/{store_id}/orders/{id}/{action} - Fulfillment Endpoint:
POST /v1/{store_id}/orders/{id}/fulfill - Documentation: Tiendanube Orders API
- Status actions are:
open,close,cancel - The fulfillment automatically sends an email to the customer with tracking
- The seller note (
owner_note) is not visible to the customer - Common shipping companies: Correo Argentino, OCA, Andreani, Mercado Envios
- For Brazil: Correios, Jadlog, Total Express
Related Nodes
Section titled “Related Nodes”- TiendanubeGetOrders - Get orders to then update them
- TiendanubeGetCustomers - Get order customer data
- TiendanubeGetProducts - Get order product data