Prerequisites
Have a valid Bearer Token / API Key generated by current user’s credentials ready, as it is required for authorizing the get user’s information request.
The following steps outline the process for getting current user’s information request.
Step 1: Create a New Request
Open Postman.
Create a new request:
Set the method to GET.
URL: https://api.prd.enumis.co.uk/onlineaccount-api/customer

Authorization
- Auth Type = Bearer Token
- Token = Your Bearer Token / API Key from prerequisites

Headers
- Accept: text/jsonl
Step 2: Send the Request
Execute the request by clicking the “Send” button in Postman. In the response, you will find your user’s information in the response.
The response contains following main sections:
- Information related to User
- Information of Accounts of User.
The response provides User:
- Account’s Available Balance (The amount is shown in pennies.)
- “ERN” of Account(s) which will be used in APIs listed in Beneficiary – Equaze Help Documentation
Example response:
{
"result": {
"userAuthId": "responseData",
"emailAddress": "responseData",
"countryOfOrigin": "responseData",
"countryOfResidence": "responseData",
"title": "responseData",
"firstName": "responseData",
"lastName": "responseData",
"birthDate": responseData,
"gender": "responseData",
"nickName": "responseData",
"mobilePhone": "responseData",
"workPhone": "responseData",
"homePhone": "responseData",
"code": "responseData",
"accounts": [
{
"ern": "ern::Enumis::Account::responseData",
"customerERN": "responseData",
"code": "GB00ENUM04047620000000",
"cards": [],
"currencyCode": "responseData",
"currencySymbol": "£",
"createdDate": responseData,
"modifiedDate": responseData,
"availableBalance": 9999,
{...}
},
{
"ern": "ern::Enumis::Account::responseData",
"businessERN": "ern::Enumis::Business::responseData",
"customerERN": "ern::Enumis::Customer::responseData",
"code": "XXGB12345678",
"cards": [
{
"accountERN": "ern::Enumis::Account::responseData",
"businessERN": "ern::Enumis::Business::responseData",
"ern": "ern::Enumis::Card::responseData",
{...},
}
],
{...}
},
],
{...}
}
}