POST api/CallTracker/ScanCall/ScanCallSearch
Request Information
URI Parameters
None.
Body Parameters
ScanFilterBE| Name | Description | Type | Additional information |
|---|---|---|---|
| baseFilter | ScanBaseFilterBE |
None. |
|
| labelFieldName | string |
None. |
|
| groupByFieldName | string |
None. |
|
| fieldValue | string |
None. |
|
| subFilters | Collection of ScanFilterBE |
None. |
|
| nextFilter | ScanFilterBE |
None. |
|
| reportName | string |
None. |
|
| orderBy | string |
None. |
Request Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ScanCallCountResponseBE| Name | Description | Type | Additional information |
|---|---|---|---|
| dataList | Collection of ScanCallCountBE |
None. |
|
| sectionName | string |
None. |
|
| totalCalls | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"dataList": [
{
"label": "sample string 1",
"callCount": 2,
"percentCount": 3.1,
"fieldKey": "sample string 4"
},
{
"label": "sample string 1",
"callCount": 2,
"percentCount": 3.1,
"fieldKey": "sample string 4"
}
],
"sectionName": "sample string 1",
"totalCalls": 2
}
application/xml, text/xml
Sample:
<ScanCallCountResponseBE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SkyERP.BusinessEntity.CallTracker">
<dataList>
<ScanCallCountBE>
<callCount>2</callCount>
<fieldKey>sample string 4</fieldKey>
<label>sample string 1</label>
<percentCount>3.1</percentCount>
</ScanCallCountBE>
<ScanCallCountBE>
<callCount>2</callCount>
<fieldKey>sample string 4</fieldKey>
<label>sample string 1</label>
<percentCount>3.1</percentCount>
</ScanCallCountBE>
</dataList>
<sectionName>sample string 1</sectionName>
<totalCalls>2</totalCalls>
</ScanCallCountResponseBE>