POST api/RepSumms
Request Information
URI Parameters
None.
Body Parameters
Collection of RepSumm| Name | Description | Type | Additional information |
|---|---|---|---|
| IdRepSum | decimal number |
None. |
|
| IdReport | decimal number |
None. |
|
| field | string |
None. |
|
| type | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"IdRepSum": 1.0,
"IdReport": 1.0,
"field": "sample string 2",
"type": "sample string 3"
},
{
"IdRepSum": 1.0,
"IdReport": 1.0,
"field": "sample string 2",
"type": "sample string 3"
}
]
text/html
Sample:
[{"IdRepSum":1.0,"IdReport":1.0,"field":"sample string 2","type":"sample string 3"},{"IdRepSum":1.0,"IdReport":1.0,"field":"sample string 2","type":"sample string 3"}]
application/xml, text/xml
Sample:
<ArrayOfRepSumm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnjomanServices.Models">
<RepSumm>
<IdRepSum>1</IdRepSum>
<IdReport>1</IdReport>
<field>sample string 2</field>
<type>sample string 3</type>
</RepSumm>
<RepSumm>
<IdRepSum>1</IdRepSum>
<IdReport>1</IdReport>
<field>sample string 2</field>
<type>sample string 3</type>
</RepSumm>
</ArrayOfRepSumm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RepSumm| Name | Description | Type | Additional information |
|---|---|---|---|
| IdRepSum | decimal number |
None. |
|
| IdReport | decimal number |
None. |
|
| field | string |
None. |
|
| type | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IdRepSum": 1.0,
"IdReport": 1.0,
"field": "sample string 2",
"type": "sample string 3"
}
text/html
Sample:
{"IdRepSum":1.0,"IdReport":1.0,"field":"sample string 2","type":"sample string 3"}
application/xml, text/xml
Sample:
<RepSumm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnjomanServices.Models"> <IdRepSum>1</IdRepSum> <IdReport>1</IdReport> <field>sample string 2</field> <type>sample string 3</type> </RepSumm>