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

period

Time range for the usage tracking report.

start

Start date of the period, formatted as YYYY-MM.

end

End date of the period, formatted as YYYY-MM.

RequestResponse
GET /api/usagetracking?start=2024-07&end=2024-07
RequestResponse
{
    "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"
        ]
    }
}

Do you have some feedback for us?

If you have suggestions for improving this article,