Retrieve License Product Feature

Retrieve a single license feature, if the requesting manager has access permissions to it.

URL: /api/v1/license-product-features/{id}

Method: GET

Path parameters:

  • id — ID of the license product feature to retrieve.

Success response

Code: 200 OK

Example content:

Response (200 OK)
{
    "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?