Operations at jobmgr/
This page describes the service operations at this endpoint.
| URI | Method | Description |
|---|---|---|
| jobmgr/config | GET | Gets background jobs configuration. |
| jobmgr/jobs/{jobId} | DELETE | Cancels the job. |
| jobmgr/jobs/{jobId} | GET | Gets the specified job. |
| jobmgr/jobs/{parentJobId}/childJobs/{childJobId} | DELETE | Cancels the child job. |
| jobmgr/jobs/all | PUT | Gets all jobs that pass through specified filter, in memory and database. |
| jobmgr/jobs/cancelAllJobsForAgents | POST | Cancels all active jobs for a provided list of agents |
| jobmgr/jobs/cancelJobs | POST | Cancels specified jobs. |
| jobmgr/jobs/count | PUT | Gets the current number of jobs that pass through specified filter, in memory and database. |
| jobmgr/jobs/paged/{jobsPerPage}/{page} | PUT | Gets the current list of jobs that pass through specified filter, paged for easy viewing in a paged grid. |
| jobmgr/jobs/processingstate | PUT | Gets state of background jobs processing (running / suspended / stopped). |
| jobmgr/jobs/resumeprocessing | PUT | Resumes processing of background jobs (any queued jobs will be started if it's possible.) |
| jobmgr/jobs/suspendprocessing/{cancelRunningJobs} | PUT | Suspends processing of background jobs (new jobs will be added to the queue, but won't be started.) |
| jobmgr/resetSettings | PUT | Resets background job's settings to default. |
| jobmgr/settings | PUT | Updates background job's settings. |