GET api/Sales/EmployeeSummary/{UserID}/{Date}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
Required |
|
| Date | date |
Required |
Body Parameters
None.
Response Information
Resource Description
MSFEmployee| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| Name | string |
None. |
|
| Date | date |
None. |
|
| Count | decimal number |
None. |
|
| Sum | decimal number |
None. |
|
| TotalSum | decimal number |
None. |
|
| MonthlyGoal | decimal number |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| BusinessDays | decimal number |
None. |
|
| CurBusinessDays | decimal number |
None. |
|
| DailyGoal | decimal number |
None. |
|
| ProjectGoal | decimal number |
None. |
|
| MTDDelta | decimal number |
None. |
|
| MonthlyDelta | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserID": 1,
"Name": "sample string 2",
"Date": "2025-10-27T18:06:06.004637-04:00",
"Count": 4.1,
"Sum": 5.1,
"TotalSum": 6.1,
"MonthlyGoal": 7.1,
"StartDate": "2025-10-01T00:00:00",
"EndDate": "2025-10-27T00:00:00",
"BusinessDays": 23.0,
"CurBusinessDays": 19.0,
"DailyGoal": 0.308695644,
"ProjectGoal": 5.865217,
"MTDDelta": -0.7652173,
"MonthlyDelta": -2.0
}
text/html
Sample:
{"UserID":1,"Name":"sample string 2","Date":"2025-10-27T18:06:06.004637-04:00","Count":4.1,"Sum":5.1,"TotalSum":6.1,"MonthlyGoal":7.1,"StartDate":"2025-10-01T00:00:00","EndDate":"2025-10-27T00:00:00","BusinessDays":23.0,"CurBusinessDays":19.0,"DailyGoal":0.308695644,"ProjectGoal":5.865217,"MTDDelta":-0.7652173,"MonthlyDelta":-2.0}
application/xml, text/xml
Sample:
<MSFEmployee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRMAPI.Models"> <Count>4.1</Count> <Date>2025-10-27T18:06:06.004637-04:00</Date> <MonthlyGoal>7.1</MonthlyGoal> <Name>sample string 2</Name> <Sum>5.1</Sum> <TotalSum>6.1</TotalSum> <UserID>1</UserID> </MSFEmployee>