Skip to main content
GET
/
api
/
v1
/
orders
/
analytics
/
table
Get Orders Analytics Table v1
curl --request GET \
  --url https://api.retailreadyai.com/api/v1/orders/analytics/table
{
  "message": "Orders analytics table retrieved successfully",
  "data": [
    {
      "asn_sent_at": null,
      "brand": "Brand1",
      "total_cartons": 64,
      "total_labels": 65,
      "unique_labels": 65,
      "order_number": "0101109828",
      "total_pallets": 1,
      "retailer": "Retailer1",
      "unique_sku_count": 1,
      "order_status": "Staged",
      "total_units": 768,
      "total_vas_actions": 0
    },
    {
      "asn_sent_at": null,
      "brand": "Brand1",
      "total_cartons": 64,
      "total_labels": 65,
      "unique_labels": 65,
      "order_number": "01009827",
      "total_pallets": 1,
      "retailer": "Retailer1",
      "unique_sku_count": 1,
      "order_status": "Staged",
      "total_units": 768,
      "total_vas_actions": 0
    },
    {
      "asn_sent_at": "Fri, 07 Mar 2025 15:36:48 GMT",
      "brand": "Brand1",
      "total_cartons": 2,
      "total_labels": 3,
      "unique_labels": 3,
      "Order ID": "01019824",
      "total_pallets": 1,
      "retailer": "Retailer1",
      "unique_sku_count": 1,
      "order_status": "Staged",
      "total_units": 24,
      "total_vas_actions": 0
    }
  ]
}

Query Parameters

page
integer

If page or page_size are not provided, page will default to 1 and page_size will default to 10.

page_size
integer

Maximum page_size is 10. If page or page_size are not provided, page will default to 1 and page_size will default to 10.

created_at_from
string<date>
created_at_to
string<date>
ship_window_from
string<date>
ship_window_to
string<date>
packed_at_from
string<date>
packed_at_to
string<date>
retailers
string
brands
string
asn
string

Response

Successful retrieval of orders analytics table.

message
string
Example:

"Orders analytics table retrieved successfully"

data
object[]
Example:
[
{
"asn_sent_at": null,
"brand": "Brand1",
"total_cartons": 64,
"total_labels": 65,
"unique_labels": 65,
"order_number": "0101109828",
"total_pallets": 1,
"retailer": "Retailer1",
"unique_sku_count": 1,
"order_status": "Staged",
"total_units": 768,
"total_vas_actions": 0
},
{
"asn_sent_at": null,
"brand": "Brand1",
"total_cartons": 64,
"total_labels": 65,
"unique_labels": 65,
"order_number": "01009827",
"total_pallets": 1,
"retailer": "Retailer1",
"unique_sku_count": 1,
"order_status": "Staged",
"total_units": 768,
"total_vas_actions": 0
},
{
"asn_sent_at": "Fri, 07 Mar 2025 15:36:48 GMT",
"brand": "Brand1",
"total_cartons": 2,
"total_labels": 3,
"unique_labels": 3,
"Order ID": "01019824",
"total_pallets": 1,
"retailer": "Retailer1",
"unique_sku_count": 1,
"order_status": "Staged",
"total_units": 24,
"total_vas_actions": 0
}
]