GET
/
api
/
v2
/
orders
/
analytics
/
table
/
{facility_id}
Get Orders Analytics Table v2
curl --request GET \
  --url https://api.retailreadyai.com/api/v2/orders/analytics/table/{facility_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "order_id": "6f8d7e6a-5b4c-3d2e-1f0g-9h8i7j6k5l4m",
      "asn_sent_at": "Mon, 15 Apr 2025 09:22:18 GMT",
      "brand": "EcoGear",
      "order_number": "83652219",
      "order_status": "Shipped",
      "retailer": "REI",
      "total_cartons": 5,
      "total_labels": 5,
      "total_pallets": 2,
      "total_units": 250,
      "total_vas_actions": 2,
      "unique_labels": 5,
      "unique_sku_count": 3
    },
    {
      "order_id": "7g9h8i7j-6k5l-4m3n-2o1p-0q9r8s7t6u5v",
      "asn_sent_at": "Sun, 14 Apr 2025 14:55:32 GMT",
      "brand": "OutdoorPro",
      "order_number": "76291483",
      "order_status": "Shipped",
      "retailer": "Bass Pro Shops",
      "total_cartons": 8,
      "total_labels": 10,
      "total_pallets": 3,
      "total_units": 480,
      "total_vas_actions": 4,
      "unique_labels": 10,
      "unique_sku_count": 6
    },
    {
      "order_id": "8h0i9j8k-7l6m-5n4o-3p2q-1r0s9t8u7v6w",
      "asn_sent_at": "Fri, 12 Apr 2025 08:17:45 GMT",
      "brand": "TrekTech",
      "order_number": "92748315",
      "order_status": "Packed",
      "retailer": "Dick's Sporting Goods",
      "total_cartons": 12,
      "total_labels": 12,
      "total_pallets": 4,
      "total_units": 720,
      "total_vas_actions": 0,
      "unique_labels": 12,
      "unique_sku_count": 4
    }
  ],
  "message": "Orders analytics table retrieved successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

facility_id
string
required

ID of the facility to fetch orders for

Query Parameters

page
integer
page_size
integer
order_id
string

Filter results by specific order ID

created_at_from
string
created_at_to
string
ship_window_from
string
ship_window_to
string
packed_at_from
string
packed_at_to
string
retailers
string
brands
string
asn
string

Response

200
application/json

Successful retrieval of orders analytics table for facility.

The response is of type object.