Jobs¶
List Jobs¶
GET /jobs
Responses
| Status | Meaning | Body |
|---|---|---|
| 200 | Successful Response | JobCollection |
Also the shared errors: 400, 401, 404, 405, 422, 500, 501, 503.
Get Job¶
GET /jobs/{job_id}
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
job_id |
path | string | yes | Letters, digits, dash and underscore; up to 64. |
Responses
| Status | Meaning | Body |
|---|---|---|
| 200 | Successful Response | BacktestJobStatus or OptimisationJobStatus or RenderJobStatus or RiskModelJobStatus or SyncJobStatus or JobStatus |
Also the shared errors: 400, 401, 404, 405, 422, 500, 501, 503.
Cancel Job¶
DELETE /jobs/{job_id}
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
job_id |
path | string | yes | Letters, digits, dash and underscore; up to 64. |
Responses
| Status | Meaning | Body |
|---|---|---|
| 200 | Successful Response | BacktestJobStatus or OptimisationJobStatus or RenderJobStatus or RiskModelJobStatus or SyncJobStatus or JobStatus |
Also the shared errors: 400, 401, 404, 405, 422, 500, 501, 503.