POST api/SupervisorInspectionTx/PostMultiple

Request Information

URI Parameters

None.

Body Parameters

Collection of 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-28T08:43:40.6248778+02:00",
    "Comments": "sample string 6",
    "Completed": true,
    "TotalJobsComplete": 8,
    "TotalComplete": 9,
    "TotalIncomplete": 10
  },
  {
    "ID": 1,
    "SupervisorAllocatedInspectionID": 2,
    "CustomerInspectionItemID": 3,
    "Image": "QEA=",
    "FilePath": "sample string 4",
    "Date": "2024-12-28T08:43:40.6248778+02:00",
    "Comments": "sample string 6",
    "Completed": true,
    "TotalJobsComplete": 8,
    "TotalComplete": 9,
    "TotalIncomplete": 10
  }
]

application/xml, text/xml

Sample:
<ArrayOfSupervisorInspectionTxDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <SupervisorInspectionTxDTO>
    <Comments>sample string 6</Comments>
    <Completed>true</Completed>
    <CustomerInspectionItemID>3</CustomerInspectionItemID>
    <Date>2024-12-28T08:43:40.6248778+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>
  <SupervisorInspectionTxDTO>
    <Comments>sample string 6</Comments>
    <Completed>true</Completed>
    <CustomerInspectionItemID>3</CustomerInspectionItemID>
    <Date>2024-12-28T08:43:40.6248778+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>
</ArrayOfSupervisorInspectionTxDTO>

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>