GET api/v{version}/jobs/{jobId}
Requests the status of a particular job
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| jobId | globally unique identifier |
Required |
|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Status of the job
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": "f6a758c9-1175-49a0-8d6e-2e5a6d4ecf91",
"Status": "Created",
"ExecutionTime": "00:00:00.1234567",
"CreateTime": "2025-12-13T06:46:40.1222359+02:00",
"StartTime": "2025-12-13T06:46:40.1222359+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>f6a758c9-1175-49a0-8d6e-2e5a6d4ecf91</Id> <CreateTime>2025-12-13T06:46:40.1222359+02:00</CreateTime> <ExecutionTime>PT0.1234567S</ExecutionTime> <StartTime>2025-12-13T06:46:40.1222359+02:00</StartTime> <Status>Created</Status> </WebJob>