Skip to main content

Placement API

The Placement API provides endpoints to retrieve information about available placements within the Particular Audience Retail Media platform for any given retailer. Placements represent advertising inventory and/or locations where advertisements can be displayed.

API Endpoint

Method: GET

URL: https://<PA_RM_END_POINT>/retail-media/retailer/{retailerId}/placements

Request Header

NameValue
Content-Typeapplication/json
AuthorizationBearer ACCESS_TOKEN

Request Parameters

ParameterTypeDescription
retailerIdstringGet the retailer ID from the retailer API

Response Payload

Success Response

  • Status Code: 200 OK
  • Payload: Returns list of available placements for a retailer in JSON format
{
"payload": [
{
"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",
},
{
"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",
},
]
}


Response Parameters

ParameterTypeDescription
idGUIDSystem generated unique identifier for the retailer
namestringName of the retailer.
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.

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 requestOptions = {
method: 'GET',
headers: myHeaders,
redirect:'follow'
};

fetch("https://<PA_RM_END_POINT>/retail-media/retailer/{retailerId}/placements", requestOptions)
.then(response => response.json())
.then(result=> {
console.log(result);
})
.catch(error => console.log('error', error));