curl --request GET \
--url https://api.dots.dev/api/v2/organizations \
--header 'Authorization: Basic <encoded-value>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"balance": 123
}
Get details about the authenticated organization, including its current balance.
curl --request GET \
--url https://api.dots.dev/api/v2/organizations \
--header 'Authorization: Basic <encoded-value>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"balance": 123
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
OK
The organization object.