Skip to content

Balance

This represents your Djamo Business account balance. You can retrieve it to see what you currently have on your business account.

The balance object

Attribute Type Description
balance Amount Your current account balance
currency Currency The currency of your account of the amount in your account.

Retrieving your business account balance balance

GET /v1/balance

Example

curl \
-X GET \
--header 'Authorization: Bearer <API_KEY>' \
<BASE_URL>/v1/balance
{
  "balance": 1000,
  "currency": "XOF"
}