List License Product Features

URL : /api/v1/license-product-features/

Method : GET

Query parameters

Pagination

Default pagination is 20 results per page.

  • 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

The results can be filtered by various attributes on license custom field or related to the license custom field.

Possible filters:

  • license

Success Response

Code : 200 OK

Content examples :

{
    "count": 3,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1698661568105404,
            "product_feature": {
                "id": 560,
                "created_at": "2023-10-30T10:18:51Z",
                "updated_at": "2023-10-30T10:22:09Z",
                "name": "f1",
                "code": "f1",
                "is_deleted": false,
                "feature_type": "consumption",
                "max_consumption": 7,
                "allow_unlimited_consumptions": false,
                "allow_overages": false,
                "max_overages": 0,
                "reset_consumption": false,
                "consumption_period": null,
                "is_floating": true,
                "is_floating_cloud": false,
                "floating_users": 13,
                "floating_timeout": 113,
                "metadata": {}
            },
            "device_features": [],
            "max_consumption": 10,
            "total_consumptions": 0,
            "allow_unlimited_consumptions": false,
            "expiry_date": null,
            "allow_overages": false,
            "max_overages": 0,
            "reset_consumption": false,
            "consumption_period": "monthly",
            "is_floating": true,
            "is_floating_cloud": false,
            "floating_users": 10,
            "floating_timeout": 120,
            "metadata": {},
            "license": 1698659715613589
        },
        ...
    ]
}

Last updated

Was this helpful?