GET api/MGDReport/GetEmployeePerformanceGraph?intEmpCode={intEmpCode}&FromDate={FromDate}&ToDate={ToDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| intEmpCode | integer |
Required |
|
| FromDate | string |
Required |
|
| ToDate | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SalesPerformanceGraph| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
None. |
|
| data | Collection of decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"name": "sample string 1",
"data": [
1.0,
2.0
]
},
{
"name": "sample string 1",
"data": [
1.0,
2.0
]
}
]
application/xml, text/xml
Sample:
<ArrayOfSalesPerformanceGraph xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
<SalesPerformanceGraph>
<data xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:decimal>1</d3p1:decimal>
<d3p1:decimal>2</d3p1:decimal>
</data>
<name>sample string 1</name>
</SalesPerformanceGraph>
<SalesPerformanceGraph>
<data xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:decimal>1</d3p1:decimal>
<d3p1:decimal>2</d3p1:decimal>
</data>
<name>sample string 1</name>
</SalesPerformanceGraph>
</ArrayOfSalesPerformanceGraph>