GET api/InspectionJob/GetById?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
InspectionJob| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| InspectionId | integer |
None. |
|
| Completed | boolean |
None. |
|
| CompletedOn | date |
None. |
|
| OperaAccount | string |
None. |
|
| VehicleId | integer |
None. |
|
| CreatedOn | date |
None. |
|
| Assigned | boolean |
None. |
|
| FaultCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"InspectionId": 1,
"Completed": true,
"CompletedOn": "2025-12-06T02:34:54.1515543+00:00",
"OperaAccount": "sample string 3",
"VehicleId": 4,
"CreatedOn": "2025-12-06T02:34:54.1671831+00:00",
"Assigned": true,
"FaultCount": 5
}
application/xml, text/xml
Sample:
<InspectionJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DMHEntities"> <Assigned>true</Assigned> <Completed>true</Completed> <CompletedOn>2025-12-06T02:34:54.1515543+00:00</CompletedOn> <CreatedOn>2025-12-06T02:34:54.1671831+00:00</CreatedOn> <FaultCount>5</FaultCount> <Id>1</Id> <InspectionId>1</InspectionId> <OperaAccount>sample string 3</OperaAccount> <VehicleId>4</VehicleId> </InspectionJob>