For the complete documentation index, see llms.txt. This page is also available as Markdown.

List Hourly Activities Top Call Counts For Licenses

Show all hourly activities top call counts for licenses the requesting manager has access permissions to.

URL: /api/v1/activities-hourly/top_call_count_licenses/ Method: GET

Default pagination is 20 results per page.

Query parameters

Pagination

  • limit - Number of results to return per page. Example: limit=20

  • offset - The initial index from which to return the results. Example: offset=21

Filtering

Filtering options

  • action__in values can be: consumption, f_consumption, check, activation, deactivation, activation_offline, deactivation_offline, trial_key, keygen, order, license_issued, change_password, customer_license_users, floating_release, installation_file, versions, product_details, get_device_variables, track_device_variables, ping, single_sign_on, floating_borrow

  • product__in

  • license__in

  • status_code__in

  • ts__* * can be lte, gte, lt, gt, date__lte, date__gte, date__lt, date__gt

  • status_code__* * can be lte, gte, lt, gt

Success response

Code: 200 OK

Response (application/json)
{
    "count": 231,
    "next": "http://127.0.0.1:5000/api/v1/activities-hourly/top_call_count_licenses/?limit=20&offset=20",
    "previous": null,
    "results": [
        {
            "id": 1620126830961029,
            "created_at": "2021-05-04T11:13:50Z",
            "key_or_users": "GEGY-YWXW-ZMAK-MKGP",
            "product": {
                "id": 1584723961091264,
                "product_name": "Great product"
            },
            "order": {
                "id": 1620126830959009
            },
            "total_call_count": 5439
        },
        ...
    ]
}

Last updated

Was this helpful?