Reads the Unleash license.
GET/api/admin/license
Reads the Unleash license. Only available for self-hosted Enterprise customers.
Responses
- 200
licenseReadSchema
- application/json
- Schema
- Example (from schema)
Schema
token stringrequired
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.
Example:
2023-07-31T13:33:02Z
{
"token": "string",
"customer": "string",
"plan": "string",
"seats": 0,
"expireAt": "2023-07-31T13:33:02Z"
}
Loading...