Skip to main content
PATCH
/
plan-entitlement-quota
/
{id}
Update Plan Entitlement Quota
curl --request PATCH \
  --url https://dev-entitlements-api.spectertech.ai/api/v1/plan-entitlement-quota/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "quota": 123
}'
{
  "id": "<string>",
  "planId": "<string>",
  "entitlement": "<string>",
  "quota": 123
}

Path Parameters

id
string
required

Unique plan entitlement quota ID

Body

application/json
quota
number
required

Updated quota for the entitlement in the plan

Response

OK - Successful update

id
string

Unique identifier of the plan entitlement quota

planId
string

Unique identifier of the plan

entitlement
string

Unique identifier of the entitlement

quota
number

Updated quota for the entitlement in the plan

I