Skip to main content

Check entitlement

Check if a billing account is entitled to a feature.

Request Body required
    org_id string
    billing_id ID of the billing account to update the subscription for
    project_id either provide billing_id of the org or API can infer the default billing ID from either org_id or project_id, not both
    feature feature or product name
Responses

A successful response.


Schema
    status boolean
POST /v1beta1/organizations/billing/check

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
Body required
{
"org_id": "string",
"billing_id": "string",
"project_id": "string",
"feature": "string"
}
curl / cURL
curl -L -X POST 'http://127.0.0.1:7400/v1beta1/organizations/billing/check' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"org_id": "string",
"billing_id": "string",
"project_id": "string",
"feature": "string"
}'