Skip to main content
GET
/
v1
/
customers
/
{id}
/
features
Resolve customer features
curl --request GET \
  --url https://api.hyperline.co/v1/customers/{id}/features \
  --header 'Authorization: Bearer <token>'
{
  "features": {
    "seats": {
      "value": 10,
      "source": "product"
    },
    "sso": {
      "value": true,
      "source": "customer"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Query Parameters

at
string<date-time>

Resolution date.

Example:

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

Response

200 - application/json
features
object
required

Resolved features keyed by feature code.

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