PUT api/InspectionJob/PutInspectionJobList
Request Information
URI Parameters
None.
Body Parameters
InspectionJobUploadDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| InspectionJobList | Collection of InspectionJobDTO |
None. |
|
| WarehouseSelection | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"InspectionJobList": [
{
"Id": 1,
"InspectionId": 2,
"Completed": true,
"CompletedOn": "2025-12-06T01:59:11.4405503+00:00",
"OperaAccount": "sample string 4",
"VehicleId": 5,
"CreatedOn": "2025-12-06T01:59:11.4405503+00:00",
"Assigned": true,
"FaultCount": 6
},
{
"Id": 1,
"InspectionId": 2,
"Completed": true,
"CompletedOn": "2025-12-06T01:59:11.4405503+00:00",
"OperaAccount": "sample string 4",
"VehicleId": 5,
"CreatedOn": "2025-12-06T01:59:11.4405503+00:00",
"Assigned": true,
"FaultCount": 6
}
],
"WarehouseSelection": "sample string 1"
}
application/xml, text/xml
Sample:
<InspectionJobUploadDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DMH.DTO">
<InspectionJobList>
<InspectionJobDTO>
<Assigned>true</Assigned>
<Completed>true</Completed>
<CompletedOn>2025-12-06T01:59:11.4405503+00:00</CompletedOn>
<CreatedOn>2025-12-06T01:59:11.4405503+00:00</CreatedOn>
<FaultCount>6</FaultCount>
<Id>1</Id>
<InspectionId>2</InspectionId>
<OperaAccount>sample string 4</OperaAccount>
<VehicleId>5</VehicleId>
</InspectionJobDTO>
<InspectionJobDTO>
<Assigned>true</Assigned>
<Completed>true</Completed>
<CompletedOn>2025-12-06T01:59:11.4405503+00:00</CompletedOn>
<CreatedOn>2025-12-06T01:59:11.4405503+00:00</CreatedOn>
<FaultCount>6</FaultCount>
<Id>1</Id>
<InspectionId>2</InspectionId>
<OperaAccount>sample string 4</OperaAccount>
<VehicleId>5</VehicleId>
</InspectionJobDTO>
</InspectionJobList>
<WarehouseSelection>sample string 1</WarehouseSelection>
</InspectionJobUploadDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>