Get pickup seller schedule (New)
Call this endpoint to retrieve scheduled pickup details of the booked shipment for Less Than Truckload (LTL) shipments. Use this API to retrieve the pickup confirmation number, pick up date, facility ready/close times, and the scheduling status for a transportation quote.
Note: This page shows examples using only the required parameters and inputs for getting the pickup seller schedule. For a full list of customization options and additional capabilities, refer to the Marketplace Fulfillment API Reference.
Endpoint
GET https://marketplace.walmartapis.com/v3/fulfillment/inbound-seller-schedule
Sample request
This sample request demonstrates how to retrieve the scheduled pickup details for booked shipments for "LTL"
quote type.
curl -X GET \
'https://marketplace.walmartapis.com/v3/fulfillment/inbound-seller-schedule?quoteType=LTL&shipmentId=0716575GDM"eId=1385226257027837952' \
-H 'WM_GLOBAL_VERSION: 3.1' \
-H 'WM_MARKET: US' \
-H 'Authorization: Basic <base64(ClientID:ClientSecret)>' \
-H 'WM_SEC.ACCESS_TOKEN: <access_token>' \
-H 'WM_QOS.CORRELATION_ID: b3261d2d-028a-4ef7-8602-633c23200af6' \
-H 'WM_SVC.NAME: Walmart Marketplace' \
-H 'WM_CONSUMER.CHANNEL.TYPE: <your_channel_id>'
import requests url = "https://marketplace.walmartapis.com/v3/fulfillment/inbound-seller-schedule" headers = { "WM_GLOBAL_VERSION": "3.1", "WM_MARKET": "US", "Authorization": "Basic <base64(ClientID:ClientSecret)>", "WM_SEC.ACCESS_TOKEN": "<access_token>", "WM_QOS.CORRELATION_ID": "b3261d2d-028a-4ef7-8602-633c23200af6", "WM_SVC.NAME": "Walmart Marketplace", "WM_CONSUMER.CHANNEL.TYPE": "<your_channel_id>",
} params = { "quoteType": "LTL", "shipmentId": "0716575GDM", "quoteId": "1385226257027837952",
} response = requests.get(url, headers=headers, params=params)
print(response.status_code)
print(response.text)
Modify your code
Replace all placeholder values with your actual shipment data before making the API request.
Authorization
- Replace with your actual Base64-encoded credentials.WM_QOS.CORRELATION_ID
- Use a unique correlation UUID to track the request.WM_SEC.ACCESS_TOKEN
- Replace with your valid access token obtained through authentication.
Sample response
This sample response shows the pick up details for the LTL shipment.
{ "payload": { "pickupConfirmationNumber": "PU-946-250610332", "pickupDate": "2025-06-25", "readyTime": "08:00:00", "closeTime": "17:00:00", "status": "SCHEDULED" }, "status": "OK"
}
Result
If the request is successful, the response returns a 200 OK
status and provides detailed information about the scheduled pick up details.
Updated about 3 hours ago