Skip to main content
POST
/
entitlements
/
report
Report Entitlement Usage
curl --request POST \
  --url https://dev-billing-api.spectertech.ai/api/v1/entitlements/report \
  --header 'Content-Type: application/json' \
  --data '{
  "subscriptionId": "<string>",
  "planEntitlementQuota": "<string>",
  "usage": 123
}'
{
  "message": "<string>"
}

Body

application/json
subscriptionId
string
required

Unique identifier of the subscription

planEntitlementQuota
string
required

Unique identifier of the plan entitlement quota

usage
number

Usage amount to report

Response

OK - Successful response

message
string

Confirmation message of the usage report

I