Skip to main content
GET
/
api
/
v1
/
plan-versions
/
{plan_version_id}
/
entitlements
List resolved entitlements for a plan version
curl --request GET \
  --url https://api.example.com/api/v1/plan-versions/{plan_version_id}/entitlements \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "feature": {
        "id": "<string>",
        "name": "<string>",
        "product": {
          "id": "<string>",
          "name": "<string>"
        }
      },
      "origin": {
        "entity": {
          "id": "<string>"
        },
        "name": "<string>"
      },
      "value": {
        "enabled": true
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.meteroid.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

plan_version_id
string<MeteroidId>
required

Plan version ID

Example:

"plv_7n42DGM5Tflk9n8mt7Fhc7"

Response

Resolved entitlements for this plan version

data
object[]
required