Skip to main content

Create/Update Users

The Create/Update User API is designed for creating or updating user profiles within our platform. This process is crucial for maintaining accurate user data and ensuring efficient management across all system interactions.

warning

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

API Endpoint

Method: POST

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

Request Header

NameValue
Content-Typeapplication/json
AuthorizationBearer ACCESS_TOKEN

Request Parameters

ParameterTypeDescription
organisationIdGUIDOrganisation ID for the supplier or retailer whom the user will belongs.

Example Request Payload

{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"firstName": "name of the user",
"lastName": "last name of the user",
"middleName": "middle name of the user",
"userRole": "role of the user (admin/manager/member)",
"password": "password",
"email": "abc@particularaudience.com",
"mobile": "Mobile",
"countryCode": "country code"
}

ParameterTypeRequiredDescription
idGUIDRequired for updating existing user information. To create a new user, exclude this field or set it to null
firstNamestringFirst name of the user.
lastNamestringLast name of the user.
middleNamestringMiddle name of the user.
userRolestringRole of the user (admin/manager/member).
passwordstringStorng password. Required when create the user.
emailstringEmail.
mobilestringMobile number.
countryCodestringcountryCode.
info

Currently there are three roles available for the user:

  • admin
  • manager
  • member

Response Payload

Success Response

  • Status Code: 200 OK
  • Payload: Returns the success message of the operation in JSON format
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"email": "johndoe@example.com"
}

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");

const body = JSON.stringify(
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"firstName": "name of the user",
"lastName": "last name of the user",
"middleName": "middle name of the user",
"userRole": "role of the user (admin/manager/member)",
"password": "password",
"email": "abc@particularaudience.com",
"mobile": "Mobile",
"countryCode": "country code"
}
)

var requestOptions = {
method: 'POST',
headers: myHeaders,
body: body
};

fetch("https://<PA_RM_END_POINT>/retail-media/users/{organisationId}/upsert-user", requestOptions)
.then(response => response.json())
.then(result=> {
console.log(result);
})
.catch(error => console.log('error', error));
info

To create a new user, exclude the id field. To update an existing user, the id field is mandatory.