Usage tracking endpoint
You can use the /api/usagetracking endpoint to retrieve usage tracking data for a specified period.
This supports the following parameters:
|
Name |
Description |
|---|---|
|
|
Time range for the usage tracking report. |
|
|
Start date of the period, formatted as |
|
|
End date of the period, formatted as |
RequestResponse
GET /api/usagetracking?start=2024-07&end=2024-07RequestResponse
{
"period": {
"start": "2024-07",
"end": "2024-07"
},
"usage": {
"users": {
"total": 60,
"monthly_business_users": 10
},
"integrations": {
"api_keys": 1,
"oauth_clients": 4
},
"assets": {
"storage": 60000000000000,
"bandwidth": 92000000000000,
"video_indexing": 450
},
"modules": [
"media",
"project",
"content",
"print",
"product"
]
}
}