POST api/v1/values/getreport?reportname={reportname}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| reportname | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CF_RAPOR| Name | Description | Type | Additional information |
|---|---|---|---|
| reportName | string |
String length: inclusive between 0 and 19 |
|
| name | string |
String length: inclusive between 0 and 25 |
|
| val | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"reportName": "sample string 1",
"name": "sample string 2",
"val": 1.0
},
{
"reportName": "sample string 1",
"name": "sample string 2",
"val": 1.0
}
]
application/xml, text/xml
Sample:
<ArrayOfCF_RAPOR xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CFAndroidService.Models">
<CF_RAPOR>
<name>sample string 2</name>
<reportName>sample string 1</reportName>
<val>1</val>
</CF_RAPOR>
<CF_RAPOR>
<name>sample string 2</name>
<reportName>sample string 1</reportName>
<val>1</val>
</CF_RAPOR>
</ArrayOfCF_RAPOR>