Order - Multi Inventory Preview
An order is created when a customer completes the checkout process. Orders also can be created through the API.
Table of Contents
Properties
Property | Explanation |
---|---|
id | The unique numeric identifier for the Order. It's different from number |
token | Specifies the location of the Order |
store_id | ID of the store the order belongs to |
contact_email | Email of the buyer |
contact_phone | Phone of the buyer |
contact_identification | Identification of the buyer (CPF/CNPJ/DNI/CUIT) |
number | Unique numberc identifier for an Order used by the shop owner and customers. It's sequential and starts at 100 |
completed_at | Object containing information about the date when the Order was created. It's the same date than the created_at date, but in a different data type. |
attributes | A list with the custom attributes for this order |
customer | Customer that purchased this Order. Only given if the 'read_customers' scope is set for the app |
products | List of the products purchased by the customer . Contents are explained below and values hold are the ones corresponding to the time the products were purchased |
fulfillment_orders | List of fulfillment orders. Contents are explained below |
note | Customer's note about the order |
owner_note | Store owner's note about the order |
coupon | List of coupons applied to the order |
discount | Total value of the discount applied to the price of the order |
subtotal | Price of the order before shipping |
total | Total price of the order including shipping and discounts |
total_usd | Total price of the order in US dollars |
currency | The total spent's currency in ISO 4217 format |
language | Order's language used by the customer during the checkout process |
gateway | ID of the payment provider that processed the order payment transaction. |
gateway_id | [Read-only] External transaction ID used by the payment provider. |
gateway_name | [Read-only] Name of the payment provider of the order. |
gateway_link | URL of the transaction details page (in the payments app's website). Can be null if the payment app didn't set this URL, or if it's a custom payment method. |
billing_name | Billing name for the order |
billing_phone | Billing phone for the order |
billing_address | Billing address for the order |
billing_number | Billing number for the order |
billing_floor | Billing floor for the order |
billing_locality | Billing locality for the order |
billing_zipcode | Billing zipcode for the order |
billing_city | Billing city for the order |
billing_province | Billing province for the order |
billing_country | Billing country code for the order |
extra | A JSON object containing custom information. Can be set via the API or through custom form fields of name "extra[key]" on the cart's checkout form in the storefront |
storefront | Origin of the order. Possible values are "store" (order created in the storefront), "meli" (order imported from Mercado Libre), "api" (order created via API), "form" (order created in the admin panel with the draft orders feature) or "pos" (order created via point of sale app) |
checkout_enabled | Deprecated |
weight | Order's total weight, in kilograms |
cancelled_at | Date when the order was cancelled in ISO 8601 format |
closed_at | Date when the order was closed (archived) in ISO 8601 format |
read_at | Date when the order was marked as read in ISO 8601 format |
status | Order's status. Possible values are "open", "closed" or "cancelled" |
payment_status | Order's payment status. Possible values are "authorized", "pending", "paid", "abandoned", "refunded" or "voided" |
shipping_status | Order's shipping status. Possible values are "unpacked", "packed", "partially_packed", "fulfilled" (means "shipped"), "partially_fulfilled" or "unfulfilled" (means "unshipped") |
next_action | Next available operation in the orders flow |
payment_details | A JSON object containing payment details. |
shipped_at | Date when the first Fulfillment Order was shipped in ISO 8601 format |
paid_at | Date when the order was paid in ISO 8601 format. |
cancel_reason | Reason why the store owner cancelled an Order. Possible values are "customer", "fraud", "inventory" or "other" |
created_at | Date when the Order was created in ISO 8601 format. It's the same date than the completed_at date, but in a different data type. |
updated_at | Date when the Order was last updated in ISO 8601 format |
landing_url | URL of the landing page that led to the purchase. If the order was created via API by an app, then null. |
client_details | Customer details for analytics. |
app_id | If the order was created via API by an app, ID of the app. Otherwise, null. |
shipping | Deprecated. Use fulfillment_order.shipping.carrier_id |
shipping_pickup_type | Deprecated. Use fulfillment_order.shipping.type |
shipping_store_branch_name | Deprecated. Use fulfillment_order.shipping.pickup_details.name |
shipping_carrier_name | Deprecated. Use fulfillment_order.shipping.carrier_name |
shipping_address | Deprecated. Use fulfillment_order.recipient |
shipping_tracking_number | Deprecated. Use fulfillment_order.tracking_info.number |
shipping_min_days | Deprecated. Use fulfillment_order.shipping.min_delivery_days |
shipping_max_days | Deprecated. Use fulfillment_order.shipping.max_delivery_days |
shipping_cost_owner | Deprecated. Use fulfillment_order.shipping.owner_cost.value |
shipping_cost_customer | Deprecated. Use fulfillment_order.shipping.owner_customer.value |
shipping_option | Deprecated. Use fulfillment_order.shipping.option_name |
shipping_option_code | Deprecated. Use fulfillment_order.shipping.option_code |
shipping_option_reference | Deprecated. Use fulfillment_order.shipping.option_reference |
shipping_pickup_details | Deprecated. Use fulfillment_order.shipping.pickup_details |
shipping_tracking_url | Deprecated. Use fulfillment_order.tracking.url |
shipping_suboption | Deprecated. Use fulfillment_order.shipping.suboption |
Property next_action
can take one of the following values:
- noop: no action to take
- close: order should be closed
- waiting_ipn: we are waiting for the gateway to update us on the order status, the seller just needs to wait
- waiting_manual_confirmation: we are waiting for the seller to confirm the transaction
- waiting_packing: we are waiting for the seller to pack the order items
- waiting_pickup: we are waiting for the fulfillment provider to pick up the order
- waiting_client_pickup: we are waiting for the buyer to pick up the order (he shipped it to a seller's B&M store)
- waiting_shipment: we are waiting for the seller to ship the order
The products
field has the following contents:
Property | Explanation |
---|---|
product_id | Product purchased |
variant_id | Product Variant purchased |
name | Product's name at the time of purchase |
price | Product's price at the time of purchase |
quantity | Quantity purchased |
weight | Product's weight at the time of purchase |
width | Product's width at the time of purchase |
height | Product's height at the time of purchase |
depth | Product's depth at the time of purchase |
free_shipping | Indicates if the product has free shipping or not. |
issues | Possibles issues that can happen to an order. Contents are explained below. |
The issues
field has the following content:
Property | Value Explanation | Issue explanation |
---|---|---|
unclaimed_stock | Number of items claimed by the user with insufficient stock | Can happens due to a race condition while the user is trying to pay the order and another user buys the same item. |
Fulfillment Orders
The fulfillment_orders
field is a list of Fulfillment Orders as defined here.
By default, only the Fulfillment Order IDs are returned. To get the details it's possible to use Fulfillment Order API or add the parameter aggregates=fulfillment_orders
to include the full details in the response. See examples below.
Payment Details
The payment_details
field has the following contents:
Property | Type | Explanation |
---|---|---|
method | String | Payment method selected. |
credit_card_company | String | Credit card company. |
installments | Integer | Quantity of installments. |
Endpoints
GET /orders
Receive a list of all Orders. Make sure to check out our recommendations on best practices for retrieving orders information in our FAQ section below.
Parameter | Explanation |
---|---|
since_id | Restrict results to after the specified ID |
status | Show Orders with a given state. Possible values are "any" (default), "open", "closed" or "cancelled" |
channels | Restrict results to the specified sales channel. Possible values are "form" (draft order created via admin or API), "store" (order created in the storefront), "api" (order created via API - doesn't include draft orders), "meli" (order imported from Mercado Libre) or "pos" (order created via point of sale app) |
payment_status | Show Orders with a given payment state. Possible values are "any" (default), "pending", "authorized", "paid", "abandoned", "refunded" or "voided" |
shipping_status | Show Orders with a given shipping state. Possible values are "any" (default), "unpacked", "unfulfilled" (means "unshipped") or "fulfilled" (means "shipped") |
created_at_min | Show Orders created after date (ISO 8601 format) |
created_at_max | Show Orders created before date (ISO 8601 format) |
updated_at_min | Show Orders last updated after date (ISO 8601 format) |
updated_at_max | Show Orders last updated before date (ISO 8601 format) |
total_min | Show Orders with total value bigger or equals than the specified value |
total_max | Show Orders with total value lower or equals than the specified value |
customer_ids | Restrict results to the specified customer IDs (comma-separated) |
page | Page to show |
per_page | Amount of results |
fields | Comma-separated list of fields to include in the response |
q | Search Orders by the given number; or containing the given text in the customer name or email |
app_id | Show orders created by a given app |
GET /orders
HTTP/1.1 200 OK
[
{
"id": 871254203,
"token": "b872a1befbcde5aaf0517ecbcc910f5dc005350e",
"store_id": "817495",
"contact_email": "buyer@tiendanube.com",
"contact_name": "Maria Silva",
"contact_phone": "+551533276436",
"contact_identification": "75839566500",
"shipping_min_days": null,
"shipping_max_days": null,
"billing_name": "Maria",
"billing_phone": "+551533276436",
"billing_address": "Rua Doutor Azevedo Sampaio",
"billing_number": "50",
"billing_floor": "",
"billing_locality": "Centro",
"billing_zipcode": "18010220",
"billing_city": "Sorocaba",
"billing_province": "São Paulo",
"billing_country": "BR",
"shipping_cost_owner": "0.00",
"shipping_cost_customer": "0.00",
"coupon": [],
"promotional_discount": {
"id": null,
"store_id": 817495,
"order_id": "871254203",
"created_at": "2022-11-15T19:37:08+0000",
"total_discount_amount": "0.00",
"contents": [],
"promotions_applied": []
},
"subtotal": "6000.00",
"discount": "600.00",
"discount_coupon": "0.00",
"discount_gateway": "600.00",
"total": "5400.00",
"total_usd": "40.79",
"checkout_enabled": true,
"weight": "0.000",
"currency": "ARS",
"language": "es",
"gateway": "offline",
"gateway_id": null,
"gateway_name": "Transferencia Bancaria",
"shipping": "table",
"shipping_option": "Envio Personalizado 1",
"shipping_option_code": "table_6103303",
"shipping_option_reference": null,
"shipping_pickup_details": null,
"shipping_tracking_number": null,
"shipping_tracking_url": null,
"shipping_store_branch_name": null,
"shipping_pickup_type": "ship",
"shipping_suboption": [],
"extra": {},
"storefront": "store",
"note": "",
"created_at": "2022-11-15T19:36:59+0000",
"updated_at": "2022-11-15T19:37:08+0000",
"completed_at": {
"date": "2022-11-15 19:36:59.000000",
"timezone_type": 3,
"timezone": "UTC"
},
"next_action": "waiting_manual_confirmation",
"payment_details": {
"method": "custom",
"credit_card_company": null,
"installments": 1
},
"attributes": [],
"customer": {
"id": 105799009,
"name": "Maria Silva",
"email": "buyer@tiendanube.com",
"identification": "75839566500",
"phone": "+551533276436",
"note": null,
"default_address": {
"address": "Evergreen Terrace",
"city": "New York",
"country": "US",
"created_at": "2022-11-15T19:36:59+0000",
"default": true,
"floor": "Apartment 8",
"id": 80189931,
"locality": "Bronx",
"name": "John Doe",
"number": "742",
"phone": "john.doe@example.com",
"province": "New York",
"updated_at": "2022-11-15T19:36:59+0000",
"zipcode": "10451"
},
"addresses": [
{
"address": "Evergreen Terrace",
"city": "New York",
"country": "US",
"created_at": "2022-11-15T19:36:59+0000",
"default": true,
"floor": "Apartment 8",
"id": 80189931,
"locality": "Bronx",
"name": "John Doe",
"number": "742",
"phone": "john.doe@example.com",
"province": "New York",
"updated_at": "2022-11-15T19:36:59+0000",
"zipcode": "10451"
}
],
"billing_name": "Maria",
"billing_phone": "+551533276436",
"billing_address": "Rua Doutor Azevedo Sampaio",
"billing_number": "50",
"billing_floor": "",
"billing_locality": "Centro",
"billing_zipcode": "18010220",
"billing_city": "Sorocaba",
"billing_province": "São Paulo",
"billing_country": "BR",
"extra": {},
"total_spent": "27.00",
"total_spent_currency": "USD",
"last_order_id": 871254203,
"active": false,
"first_interaction": "2022-11-15T19:36:59+0000",
"created_at": "2022-11-15T19:36:59+0000",
"updated_at": "2022-11-15T19:36:59+0000"
},
"products": [
{
"id": 1069053829,
"depth": "0.00",
"height": "0.00",
"name": "Mesa de Roble",
"price": "6000.00",
"compare_at_price": "37.77",
"product_id": 111334785,
"image": {
"id": 277896749,
"product_id": 111334785,
"src": "https://d2r9epyceweg5n.cloudfront.net/stores/817/495/products/pexels-olya-prutskova-89764951-74e3f47763f1aec3ec16448436206687-1024-1024.jpg",
"position": 1,
"alt": [],
"created_at": "2022-02-14T13:00:03+0000",
"updated_at": "2022-10-28T21:52:37+0000"
},
"quantity": "1",
"free_shipping": false,
"weight": "0.00",
"width": "0.00",
"variant_id": "426215948",
"variant_values": [],
"properties": [],
"sku": "12389012348124801234890",
"barcode": null
}
],
"number": 306,
"cancel_reason": null,
"owner_note": null,
"cancelled_at": null,
"closed_at": null,
"read_at": null,
"status": "open",
"payment_status": "pending",
"gateway_link": null,
"shipping_carrier_name": null,
"shipping_address": {
"address": "Evergreen Terrace",
"city": "New York",
"country": "US",
"created_at": "2022-11-15T19:23:59+0000",
"default": false,
"floor": "Apartment 8",
"id": 0,
"locality": "Bronx",
"name": "John Doe",
"number": "742",
"phone": "john.doe@example.com",
"province": "New York",
"updated_at": "2022-11-15T19:37:08+0000",
"zipcode": "10451",
"customs": null
},
"shipping_status": "unpacked",
"shipped_at": null,
"paid_at": null,
"landing_url": "http://www.example.com?source=abc",
"client_details": {
"browser_ip": "181.16.41.4",
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36"
},
"app_id": null,
"fulfillment_orders": ["01BX5ZZKBKACTAV9WEVGEMMVRZ", "01BX5ZZKBKZZZZZZZZZZZZZZZX"]
}
]
GET /orders?aggregates=fulfillment_orders
HTTP/1.1 200 OK
[
{
"id": 871254203,
"token": "b872a1befbcde5aaf0517ecbcc910f5dc005350e",
"store_id": "817495",
... // All fields from GET /orders are included in the response
"fulfillment_orders": [
{
"id": "01BX5ZZKBKACTAV9WEVGEMMVRZ",
"number": "123456",
"total_quantity": 12,
"total_weight": 12.12,
"total_price": {
"value": 123.45,
"currency": "BRL",
},
"assigned_location": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Location name",
"address": {
"zipcode": "12910802",
"street": "Some Street",
"number": "100",
"floor": "Some Floor",
"locality": "Some Locality",
"city": "Some City",
"reference": "Some Reference",
"between_streets": "Some Between Streets",
"province": {
"code": "SP",
"name": "São Paulo"
},
"region": {
"code": "SE",
"name": "Sudeste"
},
"country": {
"code": "BR",
"name": "Brasil"
}
}
},
"line_items": [
{
"id": "12345",
"quantity": 1,
"order_line_item_id": "12345678",
"created_at": "2022-11-24T10:20:19+00:00",
"updated_at": "2022-11-24T10:20:19+00:00"
}
],
"recipient": {
"name": "Recipient name",
"phone": "11988864311",
"identifier": "11223344B",
},
"shipping": {
"type": "pickup|ship",
"carrier": {
"name": "Some Carrier Name",
"id": "12345"
},
"option": {
"name": "Some Option Name",
"code": "some-option-code",
"reference": "some-option-ref"
},
"merchant_cost": {
"value": 123.14,
"currency": "BRL"
},
"consumer_cost": {
"value": 123.14,
"currency": "BRL"
},
"min_delivery_date": "2022-11-24T10:20:19+00:00" || null,
"max_delivery_date": "2022-11-25T10:20:19+00:00" || null,
"pickup_details": {
"id": "pickup-option-id",
"name": "Some option pickup detail name",
"address": {
"zipcode": "12910802",
"street": "Some Street",
"number": "100",
"floor": "Some Floor",
"locality": "Some Locality",
"city": "Some City",
"reference": "Some Reference",
"between_streets": "Some Between Streets",
"province": {
"name": "São Paulo",
"code": "SP"
},
"region": {
"name": "Sudeste",
"code": "SE"
},
"country": {
"name": "Brasil",
"code": "BR"
}
}
}
},
"destination": {
"zipcode": "12910802",
"street": "Some Street",
"number": "100",
"floor": "Some Floor",
"locality": "Some Locality",
"city": "Some City",
"reference": "Some Reference",
"between_streets": "Some Between Streets",
"province": {
"name": "São Paulo",
"code": "SP"
},
"region": {
"name": "Sudeste",
"code": "SE"
},
"country": {
"name": "Brasil",
"code": "BR"
}
},
"status": "PENDING",
"tracking_info": {
"url": null,
"code": null
},
"fulfilled_at": null,
"created_at": "2022-11-24T10:20:19+00:00",
"updated_at": "2022-11-24T10:20:19+00:00"
}]
}
]
GET /orders?fields=id,number,price_usd
HTTP/1.1 200 OK
[
{
"id": 450789469,
"number": "101",
"price_usd": "58.00"
}
]
GET /orders/{id}
Receive a single Order
Parameter | Explanation |
---|---|
fields | Comma-separated list of fields to include in the response |
GET /orders/871254203
HTTP/1.1 200 OK
{
"id": 871254203,
"token": "b872a1befbcde5aaf0517ecbcc910f5dc005350e",
"store_id": "817495",
"contact_email": "buyer@tiendanube.com",
"contact_name": "Maria Silva",
"contact_phone": "+551533276436",
"contact_identification": "75839566500",
"shipping_min_days": null,
"shipping_max_days": null,
"billing_name": "Maria",
"billing_phone": "+551533276436",
"billing_address": "Rua Doutor Azevedo Sampaio",
"billing_number": "50",
"billing_floor": "",
"billing_locality": "Centro",
"billing_zipcode": "18010220",
"billing_city": "Sorocaba",
"billing_province": "São Paulo",
"billing_country": "BR",
"shipping_cost_owner": "0.00",
"shipping_cost_customer": "0.00",
"coupon": [],
"promotional_discount": {
"id": null,
"store_id": 817495,
"order_id": "871254203",
"created_at": "2022-11-15T19:37:08+0000",
"total_discount_amount": "0.00",
"contents": [],
"promotions_applied": []
},
"subtotal": "6000.00",
"discount": "600.00",
"discount_coupon": "0.00",
"discount_gateway": "600.00",
"total": "5400.00",
"total_usd": "40.79",
"checkout_enabled": true,
"weight": "0.000",
"currency": "ARS",
"language": "es",
"gateway": "offline",
"gateway_id": null,
"gateway_name": "Transferencia Bancaria",
"shipping": "table",
"shipping_option": "Envio Personalizado 1",
"shipping_option_code": "table_6103303",
"shipping_option_reference": null,
"shipping_pickup_details": null,
"shipping_tracking_number": null,
"shipping_tracking_url": null,
"shipping_store_branch_name": null,
"shipping_pickup_type": "ship",
"shipping_suboption": [],
"extra": {},
"storefront": "store",
"note": "",
"created_at": "2022-11-15T19:36:59+0000",
"updated_at": "2022-11-15T19:37:08+0000",
"completed_at": {
"date": "2022-11-15 19:36:59.000000",
"timezone_type": 3,
"timezone": "UTC"
},
"next_action": "waiting_manual_confirmation",
"payment_details": {
"method": "custom",
"credit_card_company": null,
"installments": 1
},
"attributes": [],
"customer": {
"id": 105799009,
"name": "Maria Silva",
"email": "buyer@tiendanube.com",
"identification": "75839566500",
"phone": "+551533276436",
"note": null,
"default_address": {
"address": "Evergreen Terrace",
"city": "New York",
"country": "US",
"created_at": "2022-11-15T19:36:59+0000",
"default": true,
"floor": "Apartment 8",
"id": 80189931,
"locality": "Bronx",
"name": "John Doe",
"number": "742",
"phone": "john.doe@example.com",
"province": "New York",
"updated_at": "2022-11-15T19:36:59+0000",
"zipcode": "10451"
},
"addresses": [
{
"address": "Evergreen Terrace",
"city": "New York",
"country": "US",
"created_at": "2022-11-15T19:36:59+0000",
"default": true,
"floor": "Apartment 8",
"id": 80189931,
"locality": "Bronx",
"name": "John Doe",
"number": "742",
"phone": "john.doe@example.com",
"province": "New York",
"updated_at": "2022-11-15T19:36:59+0000",
"zipcode": "10451"
}
],
"billing_name": "Maria",
"billing_phone": "+551533276436",
"billing_address": "Rua Doutor Azevedo Sampaio",
"billing_number": "50",
"billing_floor": "",
"billing_locality": "Centro",
"billing_zipcode": "18010220",
"billing_city": "Sorocaba",
"billing_province": "São Paulo",
"billing_country": "BR",
"extra": {},
"total_spent": "27.00",
"total_spent_currency": "USD",
"last_order_id": 871254203,
"active": false,
"first_interaction": "2022-11-15T19:36:59+0000",
"created_at": "2022-11-15T19:36:59+0000",
"updated_at": "2022-11-15T19:36:59+0000"
},
"products": [
{
"id": 1069053829,
"depth": "0.00",
"height": "0.00",
"name": "Mesa de Roble",
"price": "6000.00",
"compare_at_price": "37.77",
"product_id": 111334785,
"image": {
"id": 277896749,
"product_id": 111334785,
"src": "https://d2r9epyceweg5n.cloudfront.net/stores/817/495/products/pexels-olya-prutskova-89764951-74e3f47763f1aec3ec16448436206687-1024-1024.jpg",
"position": 1,
"alt": [],
"created_at": "2022-02-14T13:00:03+0000",
"updated_at": "2022-10-28T21:52:37+0000"
},
"quantity": "1",
"free_shipping": false,
"weight": "0.00",
"width": "0.00",
"variant_id": "426215948",
"variant_values": [],
"properties": [],
"sku": "12389012348124801234890",
"barcode": null
}
],
"number": 306,
"cancel_reason": null,
"owner_note": null,
"cancelled_at": null,
"closed_at": null,
"read_at": null,
"status": "open",
"payment_status": "pending",
"gateway_link": null,
"shipping_carrier_name": null,
"shipping_address": {
"address": "Evergreen Terrace",
"city": "New York",
"country": "US",
"created_at": "2022-11-15T19:23:59+0000",
"default": false,
"floor": "Apartment 8",
"id": 0,
"locality": "Bronx",
"name": "John Doe",
"number": "742",
"phone": "john.doe@example.com",
"province": "New York",
"updated_at": "2022-11-15T19:37:08+0000",
"zipcode": "10451",
"customs": null
},
"shipping_status": "unpacked",
"shipped_at": null,
"paid_at": null,
"landing_url": "http://www.example.com?source=abc",
"client_details": {
"browser_ip": "181.16.41.4",
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36"
},
"app_id": null
}
POST /orders/
Create an Order.
Parameter | Description | Required |
---|---|---|
currency | The order currency code (ISO 4217 format). The default is the store currency. | No |
language | The language code (ISO 639-1 format). The default is the store main language. | No |
gateway | The order's payment gateway (Payment Gateway). The default is not-provided . | Yes |
payment_status | The order's payment status (Payment Status). The default is paid . | No |
status | The order's status (Order Status). The default is open . | No |
fulfillment | The order's status (Order Status). The default is unpacked . | No |
products | Order's products list (Product). | Yes |
total | The sum of all products prices, shipping costs and discounts. Must be positive. If not specified, it's calculated considering the provided costs and discounts. | No |
inventory_behaviour | The inventory behaviour that the order must perform (Inventory Behaviour). | No |
customer | The customer object (Customer). | Yes |
note | An additional customer note for the order. | No |
billing_address | The customer's billing address object (Address). | Yes |
shipping_address | The customer's shipping address object (Address). | Yes |
shipping_pickup_type | The shipping pickup type (Shipping Type). The default is pickup . | Yes |
shipping | The shipping method (Shipping Method). The defaults are Não informado for pt_BR and No informado in every other cases (es_AR, es_MX, es_CO). | Yes |
shipping_option | The order's shipping option nice name. The defaults are Não informado for pt_BR and No informado in every other cases (es_AR, es_MX, es_CO). | Yes |
shipping_tracking_number | The order's shipping tracking number | No |
shipping_cost_customer | The customer's shipping cost double value. The value 0 means free shipping. The default is 0. | Yes |
shipping_cost_owner | The owner's shipping cost double value. | No |
send_confirmation_email | Send the order confirmation email to the customer . The default is false. | No |
send_fulfillment_email | Send the order fulfillment email to the customer . The default is false. | No |