Skip to main content
GET
/
api
/
v1
/
subscriptions
/
{subscription_id}
/
entitlements
List subscription entitlements
curl --request GET \
  --url https://api.example.com/api/v1/subscriptions/{subscription_id}/entitlements \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "feature": {
        "id": "<string>",
        "name": "<string>",
        "product": {
          "id": "<string>"
        }
      },
      "origin": {
        "entity": {
          "id": "<string>"
        },
        "name": "<string>"
      },
      "value": {
        "enabled": true
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

subscription_id
string<MeteroidId>
required

Subscription ID

Example:

"sub_7n42DGM5Tflk9n8mt7Fhc7"

Response

Effective entitlements for this subscription, with live usage

data
object[]
required