Get license status
GET/license
Obtains the status of the current Camunda license
Request
Responses
- 200
- 500
Obtains the current status of the Camunda license
- application/json
- Schema
- Example (from schema)
Schema
validLicense boolean
True if the Camunda license is valid, false if otherwise
licenseType string
Will return the license type property of the Camunda license
isCommercial boolean
Will be false when a license contains a non-commerical=true property
expiresAt date-timenullable
The date when the Camunda license expires
{
"validLicense": true,
"licenseType": "string",
"isCommercial": true,
"expiresAt": "2024-11-07T21:11:50.790Z"
}
An internal error occurred while processing the request.
- application/problem+json
- Schema
- Example (from schema)
Schema
type uri
Default value: about:blank
A URI identifying the problem type.
title string
A summary of the problem type.
status int32
Possible values: >= 400
and <= 600
The HTTP status code for this problem.
detail string
An explanation of the problem in more detail.
instance uri
A URI identifying the origin of the problem.
{
"type": "about:blank",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Loading...