Reads the Unleash license.
GET /api/admin/license
Reads the Unleash license. Only available for self-hosted Enterprise customers.
Request
Responses
- 200
licenseReadSchema
- application/json
- Schema
- Example (from schema)
Schema
- token string requiredThe actual license token. 
- customer stringName of the customer that owns the license. This is the name of the company that purchased the license. 
- plan stringName of plan that the license is for. 
- seats numberNumber of seats in the license. 
- expireAt date-timeDate when the license expires. 
{
  "token": "string",
  "customer": "string",
  "plan": "string",
  "seats": 0,
  "expireAt": "2023-07-31T13:33:02Z"
}
Loading...