GET
/{orgId}/checkStatusChecks the status of Workflow Manager Server and returns the license capability level.
Query parameters
| Name | Type | Required |
|---|---|---|
token | string¦null |
Path parameters
| Name | Type | Required |
|---|---|---|
org | string |
Response status
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | success | Status |
| 400 | Bad Request | error | WorkflowJsonExceptionDTO |
Examples
Request
# You can also use wget
curl -X GET /{orgId}/checkStatus \
-H 'Authorization: Bearer <YOUR_TOKEN>'Response
{
"success": true,
"hasAdvancedLicense": true
}