Response
Indicates whether the call was successful. 0 if successful, error code if not.
Status message on outcome of the API call
The contents of the account
The description of the account
The currency of the account
The balance on the account
curl --location --request GET 'https://api.xente.co/api/accounts' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
{
"code": 0,
"message": "Account retrieved successfully",
"data": {
"accountNumber": 6,
"name": "Enaf Tech",
"description": "Enaf Tech",
"balance": 4000.00,
"currency": "UGX"
}
}