POST api/InspectionTemplateItems/PostMultiple

Request Information

URI Parameters

None.

Body Parameters

Collection of InspectionTemplateItemsDTO
NameDescriptionTypeAdditional information
ID

integer

None.

InspectionTemplateID

integer

None.

Name

string

None.

Comments

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "InspectionTemplateID": 2,
    "Name": "sample string 3",
    "Comments": "sample string 4"
  },
  {
    "ID": 1,
    "InspectionTemplateID": 2,
    "Name": "sample string 3",
    "Comments": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfInspectionTemplateItemsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <InspectionTemplateItemsDTO>
    <Comments>sample string 4</Comments>
    <ID>1</ID>
    <InspectionTemplateID>2</InspectionTemplateID>
    <Name>sample string 3</Name>
  </InspectionTemplateItemsDTO>
  <InspectionTemplateItemsDTO>
    <Comments>sample string 4</Comments>
    <ID>1</ID>
    <InspectionTemplateID>2</InspectionTemplateID>
    <Name>sample string 3</Name>
  </InspectionTemplateItemsDTO>
</ArrayOfInspectionTemplateItemsDTO>

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>