GET api/DashboardSales?FinYearId={FinYearId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FinYearId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ChartData| Name | Description | Type | Additional information |
|---|---|---|---|
| SlNo | integer |
None. |
|
| Label | string |
None. |
|
| LabelValue | string |
None. |
|
| Colour | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SlNo": 1,
"Label": "sample string 2",
"LabelValue": "sample string 3",
"Colour": "sample string 4"
},
{
"SlNo": 1,
"Label": "sample string 2",
"LabelValue": "sample string 3",
"Colour": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfChartData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Web.Api.ViewModel">
<ChartData>
<Colour>sample string 4</Colour>
<Label>sample string 2</Label>
<LabelValue>sample string 3</LabelValue>
<SlNo>1</SlNo>
</ChartData>
<ChartData>
<Colour>sample string 4</Colour>
<Label>sample string 2</Label>
<LabelValue>sample string 3</LabelValue>
<SlNo>1</SlNo>
</ChartData>
</ArrayOfChartData>