Validates the Unleash license.
GET<your-unleash-url>/api/admin/license/check
Validates the Unleash license.
Responses
- 200
licenseCheckSchema
- application/json
- Schema
- Example (auto)
Schema
isValidbooleanrequired
Whether or not the current Unleash license is considered valid
messagestring
Message describing the current state of the Unleash license
Example:
Your license expired 3 days ago
messageTypestring
Type of messages, whether it is an informative or a warning
Possible values: [info
, warning
, error
]
Example:
info
{
"isValid": true,
"message": "Your license expired 3 days ago",
"messageType": "info"
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/license/check' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>'
ResponseClear