Skip to main content
GET
/
organizations
/
{orgId}
/
balance
/
Get organization account balance
curl --request GET \
  --url https://dashboard.hologram.io/api/1/organizations/{orgId}/balance/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "data": {
    "balance": "96.05",
    "minbalance": "50.00",
    "orgid": 144,
    "promobalance": "0.00",
    "topoffamount": "0.00",
    "userid": 1234,
    "has_postpay": 0
  }
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key. You can find your API key on the Hologram Dashboard under Account Settings.

Path Parameters

orgId
integer
required

Organization ID

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

data
object