Skip to main content
POST
/
organizations
/
{organizationId}
/
entitlements
/
track-usage
Track service usage
curl --request POST \
  --url https://api.hixbe.com/account/organizations/{organizationId}/entitlements/track-usage \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "service": "PAYMENT_GATEWAY",
  "amount": 1
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string
required

Body

application/json
service
enum<string>
required

The service to track usage for

Available options:
PAYMENT_GATEWAY,
SMS_GATEWAY,
LINK_SHORTENER,
PBX_CALL_CENTER,
HOSTING,
NATIONAL_ISP,
CERTIFICATION_BADGE
amount
number
default:1

Amount to increment usage by

Response

201

Usage tracked successfully