Ship-from location accuracy reports

Sellers can use this endpoint to review all orders used to calculate their ship-from location accuracy metrics. This metric tracks the percentage of their Simplified Shipping Settings orders that shipped from the same location configured in their Simplified Shipping Settings templates. You can call the endpoint to specify the number of days (14, 30, 60, 90) of order data to include in metric calculations.

Call this endpoint to download an Excel file with the orders used to calculate the percentage of orders that shipped from the ship-from location in your Simplified Shipping Settings.

Throttling

Request limits: One call per minute per seller. You may receive an HTTP 429 error if you exceed this limit. You can refer to the throttling guide to learn more about the throttling guidelines.

Request example

The request requires authentication with an API token (WM_SEC.ACCESS_TOKEN), consumer ID, and channel type.

The endpoint https://marketplace.walmartapis.com/v3/insights/performance/sss/sfla/report specifies that you are requesting a report containing the orders used to calculate your ship-from location accuracy metrics.

The following example retrieves the metrics for orders from the past 30 days.

reportDuration: Number of days used to calculate the metric. For example, 30.

Encoding for spaces: This request requires encoding if spaces are present in the query. The endpoint uses %20 for spaces.

Before you use the example code, replace the example access token and correlation ID (a randomly generated GUID used to track and debug issues) with your own values.

curl -X 'GET' \
'https://marketplace.walmartapis.com/v3/insights/performance/sss/sfla/report?reportDuration=={{REPLACE_WITH_YOUR_REPORT_DURATION}' \ -H 'accept: application/octet-stream' \ -H ‘WM_SEC.ACCESS_TOKEN: eyABCDEFGHI123456789…’ \ -H 'WM_QOS.CORRELATION_ID: AAAAAAAA-1111-BBBB-2222-CCCC3333DDDD' \ -H 'WM_SVC.NAME: Walmart Service Name' 

Response example

Response Body

string file data application/octet-stream 

Next steps

This GET Ship-from location accuracy report overview guide explains how to use the basic configurations for make this API endpoint call. You can refer to the full Reference guide to understand how to customize the parameters for your specific use case.