API for Plugin Job Manager Administration
GET /admin/plugin-job-manager
Gets the status of the job manager.
Request
Example
GET /api/admin/plugin-job-manager HTTP/1.1
Response
status- Indicates the current status of the plugin job manager, either
"running"or"stopped". (string)
Example
HTTP/1.1 200
Content-Type: application/json
{
"status": "stopped"
}
PUT /admin/plugin-job-manager/switch
Sets the status of the job manager.
Request
status- Status of the plugin job manager you want to set up, either
"running"or"stopped". (string)
Example
PUT /admin/plugin-job-manager/switch HTTP/1.1
Content-Type: application/json
{
"status": "running"
}
Response
Example
HTTP/1.1 200