GET api/Reports/GetChartData?licenseid={licenseid}
Documentation for 'GetChartData'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| licenseid | Documentation for 'licenseid'. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"data": [
{
"Title": "sample string 1",
"Value": 2
},
{
"Title": "sample string 1",
"Value": 2
},
{
"Title": "sample string 1",
"Value": 2
}
],
"DealerId": "sample string 1",
"DealerName": "sample string 2",
"HasMoreData": true
}
application/xml, text/xml
Sample:
<ChartReportModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BoothApp.Common">
<DealerId>sample string 1</DealerId>
<DealerName>sample string 2</DealerName>
<HasMoreData>true</HasMoreData>
<data>
<ChartReportData>
<Title>sample string 1</Title>
<Value>2</Value>
</ChartReportData>
<ChartReportData>
<Title>sample string 1</Title>
<Value>2</Value>
</ChartReportData>
<ChartReportData>
<Title>sample string 1</Title>
<Value>2</Value>
</ChartReportData>
</data>
</ChartReportModel>