Skip to main content

Reads the Unleash license.

GET <your-unleash-url>/api/admin/license

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Reads the Unleash license. Only available for self-hosted Enterprise customers.

Request

Responses

licenseReadSchema

Schema
  • token string required

    The actual license token.

  • customer string

    Name of the customer that owns the license. This is the name of the company that purchased the license.

  • plan string

    Name of plan that the license is for.

  • seats number

    Number of seats in the license.

  • expireAt date-time

    Date when the license expires.

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/license' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'