Retrieve Orders
Retrieve orders from any connected Ats software
Authorizations
Headers
The connection token
Path Parameters
id of the order you want to retrieve.
Query Parameters
Set to true to include data from the original Ats software.
Response
The status of the order
"UNSHIPPED"
The number of the order
19823838833
The payment status of the order
"SUCCESS"
The currency of the order. Authorized value must be of type CurrencyCode (ISO 4217)
"AUD"
The total price of the order
300
The total discount on the order
10
The total shipping cost of the order
120
The total tax on the order
120
The fulfillment status of the order
"PENDING"
The UUID of the customer associated with the order
"801f9ede-c698-4e66-a7fc-48d19eebaa4f"
The items in the order
[
{
"remote_id": "12345",
"product_id": "prod_001",
"variant_id": "var_001",
"sku": "SKU123",
"title": "Sample Product",
"quantity": 2,
"price": "19.99",
"total": "39.98",
"fulfillment_status": "PENDING",
"requires_shipping": true,
"taxable": true,
"weight": 1.5,
"variant_title": "Size M",
"vendor": "Sample Vendor",
"properties": [{ "name": "Color", "value": "Red" }],
"tax_lines": [
{
"title": "Sales Tax",
"price": "3.00",
"rate": 0.075
}
],
"discount_allocations": [
{
"amount": "5.00",
"discount_application_index": 0
}
]
}
]
The custom field mappings of the object between the remote 3rd party & Panora
{
"fav_dish": "broccoli",
"fav_color": "red"
}
The UUID of the order
"801f9ede-c698-4e66-a7fc-48d19eebaa4f"
The remote ID of the order in the context of the 3rd Party
"id_1"
The remote data of the customer in the context of the 3rd Party
{
"fav_dish": "broccoli",
"fav_color": "red"
}
The created date of the object
"2024-10-01T12:00:00Z"
The modified date of the object
"2024-10-01T12:00:00Z"
Was this page helpful?