Totango provides an API for reading the following account information:
Before you begin
- You need your Totango API token key
- Like all APIs, there is a global rate limit of 100 calls/minute for each token
- JSON format is supported for API calls
Get account plan summary
Read plan summary using the following:
https://api.totango.com/api/v3/accounts/{account-id}/plan_summary
- Replace
{account-id}
with an account ID. - Replace
APP_TOKEN
with your authentication token.
curl --location 'https://api.totango.com/api/v3/accounts/{account-id}/plan_summary' \ --header 'app-token: APP_TOKEN' \
Response
{
"plan": "<div>Here is the summary of the account</div>",
"updated_by": "568cb93b-xxxx-11ed-928a-0a46d54e722f",
"updated_date": "2024-01-25T08:36:46+00:00",
"_version": 2
}