Retrieve Product Feature

GET /api/v1/product-features/{id}/

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

circle-info

Managers must have appropriate access permissions to retrieve the feature.

Success response (200)

200
{
    "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": {},
    "product": 1698659666691556
}

Last updated

Was this helpful?