GET
/
entitlement
/
features
/
{id}
curl -X GET \
 /entitlement/features/{id} \
 --header "Authorization: Bearer <token>"
{
  "id": "feature-1",
  "name": "number of users",
  "description": "This feature allows you to manage the number of users in your account.",
  "status": "active",
  "type": "switch",
  "config": [
    {
      "value": "<string>",
      "label": "<string>"
    }
  ],
  "unit": "<string>",
  "productAssignmentsCount": 5,
  "productPriceAssignmentsCount": 3,
  "entitlementsCount": 15
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

Feature identifier

Response

200
application/json

Feature resource

Get a entitlement feature.