Get account level settings
Overview
The Get account level settings API retrieves account-level shipping settings such as calendar day configurations, weekends, and additional days off.
Endpoint
GET https://marketplace.walmartapis.com/v3/settings/shipping/accountFunction
This API returns account level information for the:
- Carrier weekend calendar
- Carrier's transit
- Weekend delivery schedule
Sample request
curl --request GET \ --url https://marketplace.walmartapis.com/v3/settings/shipping/account \ --header 'accept: application/json'[ { "shipNode": "91539778610008065", "nodeType": "PHYSICAL", "shipNodeName": "my distrubutor786", "status": "ACTIVE", "timeZone": "PST", "distributorSupportedServices": [ "TWO_DAY_DELIVERY" ], "customNodeId": "92hb1234", "postalAddress": { "addressLine1": "36 CALIFORNIA SAA233", "city": "SC GABRIEL22", "state": "CA", "country": "USA", "postalCode": "90100" }, "shippingDetails": [ { "twoDayShipping": [ { "carrierMethodName": "FEDEX", "carrierMethodType": "GROUND" } ] } ] }
]Modify your code
1. Add authentication header
Include your OAuth access token:
--header 'Authorization: Bearer <ACCESS_TOKEN>'
Include any additional Marketplace headers (consumer ID, correlation ID, and any other Walmart headers) if required.
2. Validate required fields
Ensure the following are provided:
shipNodeNamestatustimeZonepostalAddress- At least one supported shipping method
3. Confirm valid carrier methods
Ensure the carrier method exists.
Use the Get carrier methods API if needed.
4. Validate schedule format
- Cutoff times must use the
HH:MM24-hour format - Dates must use the
YYYY-MM-DDformat
Modify your code
Add authentication
Include a valid OAuth2 access token or whatever auth scheme your integration uses:
--header 'Authorization: Bearer <ACCESS_TOKEN>'Sample response
{ "calendarDayConfiguration": { "carrierWeekendCalendar": { "saturday": { "workingDay": true }, "sunday": { "workingDay": false } }, "additionalDaysOff": [ "2030-03-10", "2030-04-10" ] }
}[ { "shipNode": "91539778610008065", "nodeType": "PHYSICAL", "shipNodeName": "my distrubutor786", "status": "ACTIVE", "timeZone": "PST", "distributorSupportedServices": [ "TWO_DAY_DELIVERY" ], "customNodeId": "92hb1234", "postalAddress": { "addressLine1": "36 CALIFORNIA SAA233", "city": "SC GABRIEL22", "state": "CA", "country": "USA", "postalCode": "90100" }, "shippingDetails": [ { "twoDayShipping": [ { "carrierMethodName": "FEDEX", "carrierMethodType": "GROUND" } ] } ] }
]Result
- The endpoint returns the account-level calendar configurations.
- Saturdays are treated as working days ("saturday": {"workingDay": true}).
- Sundays are non-working ("sunday": {"workingDay": false}).
- Two additional days off are configured:
2030-03-10and2030-04-10. - Your shipping transit time calculations and any scheduling logic depending on working days should respect these values.
Next steps
The Get shipping template details API gives you specific shipping configurations for a single shipping template.
The Update shipping templates API lets you modify configurations on an existing shipping template, such as shipping methods, regions, transit times, and pricing rules.
The Delete shipping templates API lets you permanently remove existing shipping templates from Walmart Marketplace settings.
The Get all fulfillment centers API retrieves fulfillment centers (also known as ship nodes) information on your account.
The Update fulfillment center API helps you update your existing fulfillment centers (also known as a ship nodes) configuration in Marketplace Settings.
The Create fulfillment center API sets up new fulfillment centers (also known as ship nodes) in Walmart Marketplace Settings.
The Update account level settings API allows you to configure account-level calendar settings that impact shipping calculations and delivery promise logic.
The Create account level settings API lets you establish account level calendar configuration for your shipping operations.
The Get all shipping templates API retrieves a list of all shipping templates configured on your account.
The Create shipping templates API allows sellers to create custom shipping templates that define shipping methods, transit times, pricing logic, and geographic coverage.
The Third-party fulfillment center association API allows sellers to activate or update the status of 3PL (third-party logistics) ship nodes associated with your Marketplace account.
- Third-party fulfillment center association Guide
- Third-party fulfillment center association API Reference Guide
The Get shipping configurations API retrieves account-level shipping profile settings associated on your account.
The Get shipping template activation status API allows sellers to retrieve the current activation state of shipping templates at the account level.
The Get coverage for fulfillment centers API retrieves the geographic coverage areas associated with each fulfillment center (ship node) configured under a seller account.
The Get carrier methods API retrieves the list of carrier methods available for use in Marketplace shipping configurations
The Get all third-party fulfillment providers API retrieves all third-party fulfillment providers (3PLs) available on the Walmart marketplace.
- Get all third-party fulfillment providers Guide
- Get all third-party fulfillment providers API Reference Guide
The Get partner configurations API retrieves seller-level profile information and system configuration settings associated with a Marketplace partner account.
Updated about 14 hours ago
