Third-party fulfillment center association
Overview
The Third-party fulfillment center association API allows sellers to activate or update the status of 3PL (third-party logistics) ship nodes associated with their Marketplace account.
Endpoint
POST https://marketplace.walmartapis.com/v3/settings/shipping/3plshipnodesFunction
This API helps you:
- Associate a third-party logistics (3PL) fulfillment center to your account
- Activate or deactivate an existing 3PL ship node
- Manage the operational availability of third-party warehouses
- Control whether a specific 3PL node can be used for shipping
Sample request
curl --request POST \ --url https://marketplace.walmartapis.com/v3/settings/shipping/3plshipnodes \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data '
{ "shipNodeHeader": { "version": "1.2" }, "shipNode": [ { "shipNode": "99351656957153281", "status": "ACTIVE" } ]
}
'import requests url = "https://marketplace.walmartapis.com/v3/settings/shipping/3plshipnodes" payload = { "shipNodeHeader": { "version": "1.2" }, "shipNode": [ { "shipNode": "99351656957153281", "status": "ACTIVE" } ]
} headers = { "accept": "application/json", "content-type": "application/json", "Authorization": "Bearer <ACCESS_TOKEN>",
} response = requests.post(url, json=payload, headers=headers) print(response.status_code)
print(response.headers)
print(response.text)Modify your code
To receive a valid response, update your request with valid authentication and request values.
Add authentication headers
Include a valid OAuth access token.
--header 'Authorization: Bearer <ACCESS_TOKEN>'If your integration requires additional headers, include them as needed, such as consumer ID, correlation ID, or service name.
Replace the ship node ID
Make sure shipNode contains a valid 3PL fulfillment center ID associated with your seller account.
Example:
{ "shipNode": "99351656957153281"
}Validate the status value
Use a supported status value for the node.
Possible values include:
ACTIVEINACTIVE
Sample response
The following example shows a 200 OK response.
[ { "shipNode": "string", "status": "string" }
]Result
- A successful
200 OKresponse confirms that the 3PL ship node association was updated. - The response returns the
shipNodeand its updatedstatus. - The fulfillment center is now configured as
ACTIVEorINACTIVEbased on your request. - If activated, the 3PL node becomes available for shipping operations.
- If deactivated, the node is not used for fulfillment.
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 Get account level settings API retrieves account-level shipping settings such as calendar day configurations, weekends, and additional days off.
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 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 12 hours ago
