Skip to main content

Campaigns API

The Campaigns API retrieves a paginated list of marketing campaigns within the Retail Media platform for a specific supplier.

warning

Always ensure that sensitive campaign data is handled securely and in compliance with data protection regulations.

API Endpoint

Method: GET

URL: https://<PA_RM_END_POINT>/retail-media/campaigns/supplier/{supplierId}

info

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

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 campaings associated with the supplier in JSON format
{
"payload": {
"campaigns": [
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"name": "Campaign name",
"startDate": "2025-02-19",
"dailyCap": 0.00,
"totalBudget": 0.00,
"clicks": 0,
"impressions": 0,
"spentCredits": 0.00,
"isRunning": true
},
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"name": "name of the campagin",
"startDate": "2025-01-22",
"endDate": "2025-02-28",
"dailyCap": 100.00,
"totalBudget": 1000.00,
"clicks": 0,
"impressions": 0,
"isRunning": false
}
],
"totalItems": 104,
"totalPages": 52,
"currentPage": 1,
"pageSize": 2,
"hasPreviousPage": false,
"hasNextPage": true
}
}

Response Parameters

ParameterTypeDescription
campaignsArray of ObjectArray of campaigns.
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.

Campaign Object

ParameterTypeDescription
idstringUnique identifier for the campaign.
namestringName of the campaign.
dailyCapdecimalMaximum spend allowed per day. If zero(0) no cap has set.
startDatestring(ISO 8601)Campaign start date.
end datestring(ISO 8601)Campaign end date.
totalBudgetdecimalTotal budget allocated for the campaign.
clicksintegerThe total number of clicked the campaign has received.
impressionsintegerThe total number of impressions the campaign has received.
isRunningintegerIndicates if the campaign is currently running(true) or paused(false).

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