List All the Placement Bid Multipliers

Description

Retrieve a list of all the placement bid multipliers for a campaign using this method.

URL: ​GET/api/v1/multipliers/placement

Query Parameters

ParameterNotesTypeRequiredPossible Values
campaignIdID of the campaignintegerYUnique numeric identifier

Sample Request

curl-X GET \'https://developer.api.stg.walmart.com/api-proxy/service/WPA/Api/v1/api/v1/multipliers/placement?campaignId=1234' \
--header 'Authorization: Bearer <auth_token>' \
--header 'WM_SEC.AUTH_SIGNATURE: ***********' \
--header 'WM_SEC.KEY_VERSION: 1' \ 
--header 'WM_CONSUMER.ID: adfwe-v23-faasd2r-afs-asdfqeff' \
--header 'WM_CONSUMER.intimestamp: 1565309779' \
--header 'accept: application/json' \

Response

Element DescriptionType
campaignIdId of the campaigninteger
placementTypeType of the placement.
Values are:
For auto campaigns:
  • Buy-Box
  • Search Ingrid
  • Home Page
  • Stock Up
For manual campaigns:
  • Buy-Box
  • Search Ingrid
string
multiplier% Value by which original bid is modifieddouble

Sample Response

[ { "campaignId": 600000, "placementType": "Search Ingrid", "multiplier": 100 }
]