POST ClientListByEmployeeReport/GetCustomersByEmployee
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
|
| Sorts | Collection of Kendo.Mvc.SortDescriptor |
None. |
|
| Filters | Collection of Kendo.Mvc.IFilterDescriptor |
None. |
|
| Groups | Collection of Kendo.Mvc.GroupDescriptor |
None. |
|
| Aggregates | Collection of Kendo.Mvc.AggregateDescriptor |
None. |
|
| GroupPaging | boolean |
None. |
|
| IncludeSubGroupCount | boolean |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
Body Parameters
IConnect.Domain.Reports.CustomerReport.ClientListByEmployeeReport.ReportViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SelectedEmployees | Collection of integer |
None. |
|
| SelectedCompanies | Collection of integer |
None. |
|
| IsLevel2 | boolean |
None. |
|
| PageIndex | integer |
None. |
|
| PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"SelectedEmployees": [
1,
2
],
"SelectedCompanies": [
1,
2
],
"IsLevel2": true,
"PageIndex": 1,
"PageSize": 1
}
application/xml, text/xml
Sample:
<ReportViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IConnect.Domain.Reports.CustomerReport.ClientListByEmployeeReport">
<_x003C_IsLevel2_x003E_k__BackingField>true</_x003C_IsLevel2_x003E_k__BackingField>
<_x003C_PageIndex_x003E_k__BackingField>1</_x003C_PageIndex_x003E_k__BackingField>
<_x003C_PageSize_x003E_k__BackingField>1</_x003C_PageSize_x003E_k__BackingField>
<_x003C_SelectedCompanies_x003E_k__BackingField xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</_x003C_SelectedCompanies_x003E_k__BackingField>
<_x003C_SelectedEmployees_x003E_k__BackingField xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</_x003C_SelectedEmployees_x003E_k__BackingField>
</ReportViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Kendo.Mvc.UI.DataSourceResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of Object |
None. |
|
| Total | integer |
None. |
|
| AggregateResults | Collection of Kendo.Mvc.Infrastructure.AggregateResult |
None. |
|
| Errors | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{},
{}
],
"Total": 1,
"AggregateResults": null,
"Errors": {}
}
application/xml, text/xml
Sample:
<DataSourceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kendo.Mvc.UI">
<AggregateResults xmlns:d2p1="http://schemas.datacontract.org/2004/07/Kendo.Mvc.Infrastructure" i:nil="true" />
<Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</Data>
<Errors />
<Total>1</Total>
</DataSourceResult>