Retrieve repricer strategy details
Call this endpoint to retrieve the details of a specific repricer strategy that was previously created for items in Walmart Marketplace. You can view the list of strategies used and details about the strategy including the strategy collection name, status, assigned items count, and strategy type.
Note: This page describes an example using only the required parameters and inputs for retrieving a repricer strategy. For a full list of customization options and additional capabilities, refer to the Marketplace Pricing API Reference.
Endpoint
GET https://marketplace.walmartapis.com/v3/repricer/strategies
Sample request
This request retrieves information about a Buy Box Optimization Strategy using a valid strategyId
. It returns details such as the strategy name, status, adjustment values, and configuration flags.
curl --request GET \ --url https://marketplace.walmartapis.com/v3/repricer/strategies \ --header 'accept: application/json' \ --header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
import requests url = "https://marketplace.walmartapis.com/v3/repricer/strategies" payload = {}
headers = { 'accept': 'application/json', 'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
} response = requests.request("GET", url, headers=headers, data=payload) print(response.text)
Modify your code
Replace YOUR_ACCESS_TOKEN
with your actual access token obtained from Marketplace API authentication.
Sample response
If the request is successful, the API returns the full configuration of the repricer strategy, including all applied parameters.
{ "totalElements": 1, "strategyCollections": [ { "repricerStrategy": "Buy Box Strategy", "strategyCollectionId": "12345678-1234-abcd-1abc-1234567890", "enabled": true, "assignedCount": 1, "enableRepricerForPromotion": true, "restoreSellerPriceWithoutTarget": true, "enableBuyboxMeetExternal": true, "strategies": [ { "strategyType": "Buy Box Price", "adjustmentType": "UNIT", "adjustmentValue": 1.2 } ] } ]
}
Result
If successful, the API response returns an HTTP 200 OK
status with a JSON payload containing the strategy details.
- strategyId: Unique identifier for the pricing strategy.
- name: Name of the pricing strategy.
- description: Description of how the pricing strategy works.
- active: Boolean indicating whether the strategy is currently active.
Updated about 5 hours ago