curl -X PUT \
/entitlement/features/{id}/status \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"applyToExistingSubscriptions": ""
}'
{
"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>"
}
Replaces the Feature resource.
curl -X PUT \
/entitlement/features/{id}/status \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"applyToExistingSubscriptions": ""
}'
{
"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>"
}
Value for the Authorization header parameter.
Feature identifier
The updated Feature resource
Update the status of a entitlement feature.
Feature resource updated
Get all entitlement features.
Was this page helpful?