cURL
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.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
OK
The organization object.
The organization's unique identifier.
The organization's current balance in cents.
Was this page helpful?