GET api/v{version}/jobs/{status}
Requests all the jobs with the specified status
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| status | JobStatus |
Required |
|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
List of all the jobs with the specified status
WebJob| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | JobStatus |
None. |
|
| ExecutionTime | time interval |
None. |
|
| CreateTime | date |
None. |
|
| StartTime | date |
None. |
|
| Id | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "76a5cfda-3749-4269-992d-4d78ada0d9e7",
"Status": "Created",
"ExecutionTime": "00:00:00.1234567",
"CreateTime": "2026-03-22T00:54:23.0886477+02:00",
"StartTime": "2026-03-22T00:54:23.0886477+02:00"
}
application/xml, text/xml
Sample:
<WebJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Oasis.WebAPI.Definitions"> <Id>76a5cfda-3749-4269-992d-4d78ada0d9e7</Id> <CreateTime>2026-03-22T00:54:23.0886477+02:00</CreateTime> <ExecutionTime>PT0.1234567S</ExecutionTime> <StartTime>2026-03-22T00:54:23.0886477+02:00</StartTime> <Status>Created</Status> </WebJob>