Skip to main content

View Account Balance

The View Account Balance API is designed to retrieve the current balance of the account for a business unit of a supplier organization.

warning

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

API Endpoint

Method: GET

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

Request Header

NameValue
Content-Typeapplication/json
AuthorizationBearer ACCESS_TOKEN

Request Parameters

ParameterTypeDescription
supplierIdstringGet the supplier ID from the supplier API
info

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

Response Payload

Success Response

  • Status Code: 200 OK
  • Payload: Returns account information of the supplier with balance in JSON format
{
"account": {
"id": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"ownerId": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"credits": 8854.26,
"spent": 7898.93,
"balance": 1200,
}
}

Response Parameters

ParameterTypeDescription
idGUIDSystem generted account ID for the supplier in PA system.
ownerIdGUIDSupplier ID who own the account.
creditsdecimalTotal amount that has been added.
spentdecimalTotal amount that has been spent.
balancedecimalAvailable balance for the account

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