Get 3PL Turnaround Metrics
GET/api/walmart/:integrationInstance/wfs/inbound-shipments/3pl-metrics
3PL/supplier turnaround SLA metrics: per-partner turnaround gaps between sending a WFS-inbound fulfilment request and each milestone (sent → box contents submitted, sent → ready to ship), plus an overall summary. Derived from packet timestamps + portal events across all of this integration instance's WFS inbound shipments.
Authentication: Requires Bearer token.
Query parameters (both optional):
- date_from (date, m/d/Y or Y-m-d): only include packets sent on/after this day (start of day).
- date_to (date, m/d/Y or Y-m-d): only include packets sent on/before this day (end of day).
Response: { data: { summary, partners[] } }. summary is the 'All partners' aggregate; partners[] is one row per 3PL warehouse / supplier, sorted by shipments_sent desc. partner_type is 'all' (summary), '3pl', or 'supplier'. Median/avg hour fields are null when no packet has reached that milestone yet.
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.