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

Body

application/json
planId
string
required

Unique identifier of the plan

entitlement
string
required

Unique identifier of the entitlement

quota
number
required

Quota for the entitlement in the plan

Response

Created - Successful creation of plan entitlement quota

id
string

Unique identifier of the created plan entitlement quota

planId
string

Unique identifier of the plan

entitlement
string

Unique identifier of the entitlement

quota
number

Quota for the entitlement in the plan

I