Prerequisites
After getting the Bearer Token in this guide Get a Bearer Token – Equaze Help Documentation, the response will also include refreshToken value. It is valid for 24 hours.

The refreshToken can be used to refresh the bearerToken. The following steps outline the process for generating a bearer token using the refreshToken.
Step 1: Create a New Request
Open Postman.
Create a new request:
Set the method to POST.
URL: https://api.prd.enumis.co.uk/onlineaccount-api/access-token

Body
{
“refreshToken”: “YourRefreshToken”
}
Replace “YourRefreshToken” with your actual refreshToken.

Step 2: Send the Request
Execute the request by clicking the “Send” button in Postman. In the response, you will find your new bearerToken.
