List All the Platform Bid Multipliers

Description:

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

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

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/platform?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
platformType  Type of the platform. Values are: Desktop, Mobile, App  string
multiplier% Value by which original bid is modifieddouble

Sample Response

[ { "campaignId": 600000, "platformType": "Desktop", "multiplier": 100 }
]