List License Product Features
Show all license product features the requesting manager has access permissions to.
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=20offset— The initial index from which to return the results. Example:offset=21
Filtering
Possible filters:
license
Success Response
Code: 200 OK
Response body (click to expand)
response.json
{
"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
},
...
]
}Was this helpful?