Skip to main content

AdSet Collections

The AdSet Collections API is designed to retrieve a list of collections eligible for inclusion a AdSet for a given supplier and retailer combination within campaigns.

API Endpoint

Method: GET

URL: https://<PA_RM_END_POINT>/retail-media/suppliers/{supplierId}/retailers/{retailerId}/collections

info

Please refer to the Supplier API documentation for detailed instructions on how to retrieve the supplierId and Retailer API for retailer.

Request Header

NameValue
Content-Typeapplication/json
AuthorizationBearer ACCESS_TOKEN

Request Parameters

ParameterTypeDescription
retailerIdstringGet the retailer ID from the Retailer API
supplierIdstringGet the supplier ID from the Supplier API

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 collections for a particular retailer that belongs to a specific supplier in JSON format
{
"collections": [
{
"name": "collection 1",
"id": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"totalProducts": 2,
"collectionType": "Fixed"
},
{
"name": "collection 2",
"id": "xxxxxxxxxxxxxxxxxxxxxxxxx"
"totalProducts": 1,
"rules": [
"Product brand is coke",
"Product price greater than $1",
]
,
"collectionType": "Dynamic"
}
],

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

info

Please refer to the Collection Products API documentation for to view the products for the collection.

Response Parameters

ParameterTypeDescription
collectionsArray of ObjectArray of adset collections.
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.

collection Object

ParameterTypeDescription
idstringUnique identifier for the collection.
namestringName of the collection.
totalProductsintegerNumber of products in the collection.
collectionTypestringType of collection - Fixed or Dynamic
rulesArray of StringArray of rules for the collection.

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/suppliers/{supplierId}/retailers/{retailerId}/collections?page=1&limit=100", requestOptions)
.then(response => response.json())
.then(result=> {
console.log(result);
})
.catch(error => console.log('error', error));