Skip to main content
GET
/
api
/
v1
/
customers
/
{id_or_alias}
/
entitlements
Get all entitlements for a customer
curl --request GET \
  --url https://api.example.com/api/v1/customers/{id_or_alias}/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

id_or_alias
string
required

Customer ID or alias

Response

Customer entitlements

data
object[]
required