Skip to main content

Get Users

The Get User API is designed to retrieve a list of user profiles from our platform for an Organisation.

warning

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

API Endpoint

Method: GET

URL: https://<PA_RM_END_POINT>/retail-media/users/{organisationId}

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.
info

organisationId is the ID of the Retailer/Supplier's organisation whose users you want to retrieve. If no organisationId is provided, the API will return a list of all users across all organisations that are active for the connected application.

Response Payload

Success Response

  • Status Code: 200 OK
  • Payload: Returns list of users associated with the organisation in JSON format
{
"users": [
{
"id": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"organisationId": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"username": "username",
"firstname": "FirstName",
"lastname": "LastName",
"mobile": "Mobile",
"email": "abc@gmail.com"
}
],
"totalItems": 12,
"totalPages": 1,
"currentPage": 1,
"pageSize": 20,
"hasPreviousPage": false,
"hasNextPage": false
}

Response Parameters

ParameterTypeDescription
usersArray of ObjectArray of users.
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.

User Object

ParameterTypeDescription
idstringUnique identifier for the user.
organisationIdstringUnique identifier of the organisation for the user.
usernamestringUsername of the user.
firstnamestringFirst name of the user.
lastnamestringLast name of the user.
mobilestringMobile number of the user.
emailstringEmail address of the user.

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