GET api/crm/report/sales-delivery/staff/{startDate}/{endDate}/{userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| startDate | string |
Required |
|
| endDate | string |
Required |
|
| userId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReportSalesDeliveryStaffEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| StaffId | integer |
None. |
|
| Staff | string |
None. |
|
| Open | integer |
None. |
|
| ForAcceptance | integer |
None. |
|
| Close | integer |
None. |
|
| Cancelled | integer |
None. |
|
| Total | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StaffId": 1,
"Staff": "sample string 2",
"Open": 3,
"ForAcceptance": 4,
"Close": 5,
"Cancelled": 6,
"Total": 7
},
{
"StaffId": 1,
"Staff": "sample string 2",
"Open": 3,
"ForAcceptance": 4,
"Close": 5,
"Cancelled": 6,
"Total": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfReportSalesDeliveryStaffEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/easyfiscrm_api.Entities">
<ReportSalesDeliveryStaffEntity>
<Cancelled>6</Cancelled>
<Close>5</Close>
<ForAcceptance>4</ForAcceptance>
<Open>3</Open>
<Staff>sample string 2</Staff>
<StaffId>1</StaffId>
<Total>7</Total>
</ReportSalesDeliveryStaffEntity>
<ReportSalesDeliveryStaffEntity>
<Cancelled>6</Cancelled>
<Close>5</Close>
<ForAcceptance>4</ForAcceptance>
<Open>3</Open>
<Staff>sample string 2</Staff>
<StaffId>1</StaffId>
<Total>7</Total>
</ReportSalesDeliveryStaffEntity>
</ArrayOfReportSalesDeliveryStaffEntity>