Skip to main content

Retailer API

The Retailer API is designed to retrieve information about the Retailer linked to the provided application ID.

warning

It is important to handle retailer data securely and ensure that access is restricted to authorized users only.

API Endpoint

Method: GET

URL: https://<PA_RM_END_POINT>/retail-media/retailers

Request Header

NameValue
Content-Typeapplication/json
AuthorizationBearer ACCESS_TOKEN

Response Payload

Success Response

  • Status Code: 200 OK
  • Payload: Returns list retailers associated to the application in JSON format
[
{
"id": "xxxxxxxxxxxxxxxxxxxxxxx",
"organisationId": "xxxxxxxxxxxxxxxxxxxxxxx",
"name": "Retailer's business unit name",
"timeZoneUtcOffsetInMin": 0,
"primaryCurrency": "AUD"
}
]

Response Parameters

ParameterTypeDescription
idGUIDSystem generated unique identifier for the retailer
organisationIdGUIDThe unique identifier for the organization the retailer belongs to
namestringName of the retailer
primaryCurrencystringThe primary currency used by the retailer

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/retailers", requestOptions)
.then(response => response.json())
.then(result=> {
console.log(result);
})
.catch(error => console.log('error', error));