Skip to main content

Campaign AdSets

The Campaign AdSets API fetches a list of all AdSets associated with a specific campaign. This endpoint is crucial for managing and reviewing AdSets within a campaign, allowing for effective tracking and adjustment.

warning

Ensure that Ad Set data is accessed securely and only by authorized users to maintain confidentiality and integrity of the information.

API Endpoint

Method: GET

URL: https://<PA_RM_END_POINT>/retail-media/campaigns/{campaignId}/adsets

info

Please refer to the Supplier API documentation for detailed instructions on how to retrieve the supplierId and Campaign List API for campaignId.

Request Header

NameValue
Content-Typeapplication/json
AuthorizationBearer ACCESS_TOKEN

Request Query Parameters

ParameterTypeDescription
pageintegerThe page number of the user list. Defaults to 1 if not specified.
limitintegerThe number of users to return per page. Defaults to 10 but can be set as needed up to a maximum of 100.

Response Payload

Success Response

  • Status Code: 200 OK
  • Payload: Returns list of adsets for a particular campaign that belongs to a specific supplier in JSON format
{
"adsets": [
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"name": "name of the adset",
"collectionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"placements": [
{
"id": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "Hero Banner",
"widget": "Banner",
"route": "Home Page",
"strategy": "Fixed",
"adSetType": "Sponsored Display",
"costType": "Cost per click",
"availabeSlots": [1],
"cost": 0.5,
"status": "Active",
"isKeywordTargetingEnabled": false,
"startDate": "2025-02-20",
"endDate": "2025-02-21"
"specialRates": [
{
"title": "special rate title",
"specialCost": 2.00,
"startDate": "2025-02-20",
"endDate": "2025-02-21",
"id": "xxxxxxxxxxxxxxxxxxxxxxxxx"
}
],
"dimension": "360x600",
"displayDimensionType": "IAB Standerd",
},
],

"banner": {
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"title": "Banner title",
"images": [
{
"imageUrl": "",
"deviceType": "Desktop"
},
{
"imageUrl": "",
"deviceType": "Mobile"
},
{
"imageUrl": "",
"deviceType": "Tablet"
}
]
}
},
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"name": "name of the adset",
"collectionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"placements":[
{
"id": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "placement name",
"widget": "Popular Items",
"route": "Home Page",
"strategy": "Relevance",
"adSetType": "Sponsored Product",
"costType": "Cost per mille",
"availabeSlots": [2, 0, 1, 3, 7, 6, 4, 5],
"cost": 0.5,
"status": "Active",
}
]
}
],

"totalItems": 12,
"totalPages": 1,
"currentPage": 1,
"pageSize": 20,
"hasPreviousPage": false,
"hasNextPage": false
}

ParameterTypeDescription
idGUIDSystem generated ID of the adset.
namestringName of the adset
collectionIdGUIDAdSet collection ID attached to this adset.
placementsArray of ObjectArray of placements attached to this adset. Check the details parameter defination in placement object section
bannerObjectBanner details attached to this adset. Check the details parameter defination in banner object section
totalItemsintegerTotal number of users available for the given organisation.
totalPagesintegerTotal number of pages available for the given organisation.
currentPageintegerCurrent page number for the list of users.
pageSizeintegerNumber of users returned per page.
hasPreviousPagebooleanIndicates if previous page is available.
hasNextPagebooleanIndicates if next page is available.

placement object

ParameterTypeDescription
idGUIDSystem generated unique identifier for the placement
namestringName of the placement.
widgetstringName of the widget where the placement is located.
routestringName of the route where the placement is located.
strategystringAdvertising strategy used for the placement.
adSetTypestringType of ad set associated with the placement.
costTypestringType of cost associated with the placement.
availabeSlotsArrayList of available slots for the placement.
costfloatCost associated with the placement.
statusstringStatus of the placement.
startDatestringStart date for the placement. Only available for Fixed strategy.
endDatestringEnd date for the placement. Only available for Fixed strategy.
specialRatesArrayList of special rates for the placement. Only available for Fixed strategy.
dimensionstringDimension of the placement. Available for Sponsored Display AdSet type.
displayDimensionTypestringType of dimension used for the placement. Available for Sponsored Display AdSet type.
isKeywordTargetingEnabledbooleanIndicates if keyword targeting is enabled for the placement. Available for Sponsored Display AdSet type.
ParameterTypeDescription
idGUIDSystem generated unique identifier for the banner
namestringName of the banner.
imagesarray of objectArray of object for the banner image. Fields are url & deviceType

Error Response

If an error occurs, the API will return an appropriate status code along with an error message.

  • Sample Error Response (400 Bad Request):
{
"errors": [
"Error message 1",
"Error message 2"
],
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
"title": "One or more validation errors occurred.",
"status": 400,
"traceId": "xxxxxxxxxxxxxxxxxxx"
}

Example Usage (JavaScript)

var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("Authorization", "BEARER YOUR_ACCESS_TOKEN");

var urlencoded = new URLSearchParams();

var requestOptions = {
method: 'GET',
headers: myHeaders,
body: urlencoded,
redirect:'follow'
};

fetch("https://<PA_RM_END_POINT>/retail-media/campaigns/{campaignId}/adsets?page=1&limit=100", requestOptions)
.then(response => response.json())
.then(result=> {
console.log(result);
})
.catch(error => console.log('error', error));