report_shipment_volume_trend

Updated May 19, 20261 min read

Shipment counts over time for a selected milestone, grouped and bucketed across the requested date range.

The right tool when the user asks "how is volume trending?" — created shipments, booked shipments, delivered shipments, etc.

Parameters

NameTypeRequiredDescription
tenantIdstringYesThe tenant to report on.
fromstringYesRange start (ISO timestamp).
tostringYesRange end.
milestonestringNoLifecycle milestone to trend — e.g. created, booked, shipped, delivered.
bucket_sizestringNoDate histogram interval — hour, day, week, month.
group_bystringNoGroup the trend by a dimension — delivery_type, carrier, merchant, etc.
shipment_typestringNoforward or reverse.
selectstringNojson-mask syntax.
merchant / location_access / country_accessstring | string[]NoStandard scope filters.

Returns

A bucketed time series. With group_by, each bucket contains a nested breakdown by the chosen dimension.

Example agent prompts

"Daily booked shipments over the last 30 days."

report_shipment_volume_trend(
  tenantId="…",
  from="2026-04-07",
  to="2026-05-07",
  milestone="booked",
  bucket_size="day"
)

"Weekly delivered volume by carrier for Q1."

report_shipment_volume_trend(
  tenantId="…",
  from="2026-01-01",
  to="2026-03-31",
  milestone="delivered",
  bucket_size="week",
  group_by="carrier"
)
  • report_shipment_status_summary — current snapshot rather than trend.
  • report_failed_delivery_analysis — failure-focused trend.
  • report_carrier_performance — performance KPIs for the carriers surfaced in group_by="carrier".

Equivalent in the dashboard

Reports → Shipment Volume Trend.