Passer au contenu principal
GET
/
v1
/
customers
/
{id}
/
entitlements
Resolve customer entitlements
curl --request GET \
  --url https://api.hyperline.co/v1/customers/{id}/entitlements \
  --header 'Authorization: Bearer <token>'
{
  "entitlements": {
    "seats": {
      "value": 10,
      "source": "product"
    },
    "sso": {
      "value": true,
      "source": "customer"
    }
  }
}

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

Paramètres de requête

at
string<date-time>

Resolution date.

Exemple:

"2024-12-20T16:04:11Z"

Réponse

200 - application/json
entitlements
object
requis

Resolved entitlements keyed by feature code.

Exemple:
{
"seats": { "value": 10, "source": "product" },
"sso": { "value": true, "source": "customer" }
}