GET api/RepSumms?id_report={id_report}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id_report | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of 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"
},
{
"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>