POST api/SDCallMaster/GetAllUnassignedCallsCountByDate/{templateId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| templateId | string |
Required |
Body Parameters
MultiDayCallCountParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountId | integer |
None. |
|
| CompanyId | string |
None. |
|
| fromDate | date |
None. |
|
| toDate | date |
None. |
|
| TemplateId | string |
None. |
|
| CallTypeArray | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountId": 1,
"CompanyId": "sample string 2",
"fromDate": "2025-12-16T20:27:29.2509857+00:00",
"toDate": "2025-12-16T20:27:29.2509857+00:00",
"TemplateId": "sample string 5",
"CallTypeArray": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<MultiDayCallCountParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAWinProV4.Model.DTO.AccountSpecific.SD">
<AccountId>1</AccountId>
<CallTypeArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</CallTypeArray>
<CompanyId>sample string 2</CompanyId>
<TemplateId>sample string 5</TemplateId>
<fromDate>2025-12-16T20:27:29.2509857+00:00</fromDate>
<toDate>2025-12-16T20:27:29.2509857+00:00</toDate>
</MultiDayCallCountParameters>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Dictionary of string [key] and integer [value]Response Formats
application/json, text/json
Sample:
{
"sample string 1": 2,
"sample string 3": 4
}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfstringint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<KeyValueOfstringint>
<Key>sample string 1</Key>
<Value>2</Value>
</KeyValueOfstringint>
<KeyValueOfstringint>
<Key>sample string 3</Key>
<Value>4</Value>
</KeyValueOfstringint>
</ArrayOfKeyValueOfstringint>