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
Parameter | Notes | Type | Required | Possible Values |
---|---|---|---|---|
campaignId | ID of the campaign | integer | Y | Unique 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 | Description | Type |
---|---|---|
campaignId | Id of the campaign | integer |
platformType | Type of the platform. Values are: Desktop, Mobile, App | string |
multiplier | % Value by which original bid is modified | double |
Sample Response
[ { "campaignId": 600000, "platformType": "Desktop", "multiplier": 100 }
]
Updated about 2 months ago