Get partner configurations
Overview
The Get partner configurations API retrieves seller-level profile information and system configuration settings associated with a Marketplace partner account.
Endpoint
GET https://marketplace.walmartapis.com/v3/settings/partnerprofileFunction
This API helps you:
- Retrieve partner identity and account information
- Verify account status
- View feed throttle limits
- Audit feed rate limits and file size constraints
- Confirm onboarding and operational configuration settings
Sample request
curl --request GET \ --url https://marketplace.walmartapis.com/v3/settings/partnerprofile \ --header 'accept: application/json'import requests url = "https://marketplace.walmartapis.com/v3/settings/partnerprofile" headers = { "accept": "application/json", "Authorization": "Bearer <ACCESS_TOKEN>",
} response = requests.get(url, headers=headers) print(response.status_code)
print(response.text)Modify your code
Add authentication header
Include a valid OAuth access token:
--header 'Authorization: Bearer <ACCESS_TOKEN>'If your integration requires additional headers (consumer ID, correlation ID, or other Walmart headers), include them accordingly.
Sample response
{ "partner": { "partnerId": "100009", "partnerName": "The seller's legal name", "partnerDisplayName": "The seller name shown on walmart.com", "partnerStoreId": "Partner/Seller ID for Walmart store URL ", "businessRegNumber": "A registered distinct identifier such as US Tax ID / Foreign Tax ID", "countryOfIncorporation": "The country from where seller conducts their business | ISO 3166 Country code" }, "configurations": [ { "configurationName": "ACCOUNT", "configuration": { "status": "ACTIVE" } }, { "configurationName": "FEED", "configuration": { "values": [ { "feedType": "inventory", "throttleConfigurations": [ { "type": "SELLER", "rate": { "count": 6, "replenishTimeWindow": { "value": "3600", "unitOfMeasurement": "SECOND" } }, "fileSize": { "value": 26214400, "unitOfMeasurement": "BYTES" } } ] }, { "feedType": "MP_ITEM", "throttleConfigurations": [ { "type": "SELLER", "rate": { "count": 6, "replenishTimeWindow": { "value": "3600", "unitOfMeasurement": "SECOND" } }, "fileSize": { "value": 26214400, "unitOfMeasurement": "BYTES" } } ] } ] } } ]
}
Result
The response provides:
Partner information
- Legal and display names
- Store ID used in Walmart URLs
- Business registration number
- Country of incorporation
partnerId
Account configuration
- Account configuration displays the account status (for example,
ACTIVE)
Feed configuration
- Feed types supported (for example,
inventoryandMP_ITEM) - Throttle limits:
- Maximum number of feeds allowed within a time window
- Time window duration
- Maximum file size per feed
- Throttle configuration type (for example, seller-level limits)
This information is critical for:
- Feed integration planning
- Rate limit management
- Large file submission planning
- System performance tuning
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 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
Updated about 14 hours ago
