PUT api/SupervisorInspectionTx?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

SupervisorInspectionTxDTO
NameDescriptionTypeAdditional information
ID

integer

None.

SupervisorAllocatedInspectionID

integer

None.

CustomerInspectionItemID

integer

None.

Image

Collection of byte

None.

FilePath

string

None.

Date

date

None.

Comments

string

None.

Completed

boolean

None.

TotalJobsComplete

integer

None.

TotalComplete

integer

None.

TotalIncomplete

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "SupervisorAllocatedInspectionID": 2,
  "CustomerInspectionItemID": 3,
  "Image": "QEA=",
  "FilePath": "sample string 4",
  "Date": "2024-12-28T09:00:36.0265177+02:00",
  "Comments": "sample string 6",
  "Completed": true,
  "TotalJobsComplete": 8,
  "TotalComplete": 9,
  "TotalIncomplete": 10
}

application/xml, text/xml

Sample:
<SupervisorInspectionTxDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <Comments>sample string 6</Comments>
  <Completed>true</Completed>
  <CustomerInspectionItemID>3</CustomerInspectionItemID>
  <Date>2024-12-28T09:00:36.0265177+02:00</Date>
  <FilePath>sample string 4</FilePath>
  <ID>1</ID>
  <Image>QEA=</Image>
  <SupervisorAllocatedInspectionID>2</SupervisorAllocatedInspectionID>
  <TotalComplete>9</TotalComplete>
  <TotalIncomplete>10</TotalIncomplete>
  <TotalJobsComplete>8</TotalJobsComplete>
</SupervisorInspectionTxDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>