POST api/RepRows?header={header}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
header

string

Required

Body Parameters

Collection of Object

None.

Request Formats

application/json, text/json

Sample:
[
  {},
  {}
]

text/html

Sample:
[{},{}]

application/xml, text/xml

Sample:
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <anyType />
  <anyType />
</ArrayOfanyType>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RepRows
NameDescriptionTypeAdditional information
IdRepRow

decimal number

None.

IdReport

decimal number

None.

colName

string

None.

type

string

None.

value

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IdRepRow": 1.0,
  "IdReport": 1.0,
  "colName": "sample string 2",
  "type": "sample string 3",
  "value": "sample string 4"
}

text/html

Sample:
{"IdRepRow":1.0,"IdReport":1.0,"colName":"sample string 2","type":"sample string 3","value":"sample string 4"}

application/xml, text/xml

Sample:
<RepRows xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnjomanServices.Models">
  <IdRepRow>1</IdRepRow>
  <IdReport>1</IdReport>
  <colName>sample string 2</colName>
  <type>sample string 3</type>
  <value>sample string 4</value>
</RepRows>