Endpoint
/v1/license/status
GET
Retrieve the current license and whether it is active.
Parameters
This resource has no parameters.
Response
Codes
Code |
Description |
200 |
Return value on success |
Schema
{
"description": "api_license_status",
"type": "object",
"properties": {
"state": {
"type": "string",
"enum": [
"LICENSE_STATE_NONE",
"LICENSE_STATE_ACTIVE",
"LICENSE_STATE_EXPIRED"
],
"description": "state:\n * `LICENSE_STATE_ACTIVE` - LICENSE_STATE_ACTIVE,\n * `LICENSE_STATE_EXPIRED` - LICENSE_STATE_EXPIRED,\n * `LICENSE_STATE_NONE` - LICENSE_STATE_NONE"
},
"license": {
"description": "license",
"type": "object",
"properties": {}
}
}
}