POST api/LeadApp/logout
Request Information
URI Parameters
None.
Body Parameters
LoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| calllogs | Collection of Calllog |
None. |
|
| loginLocation | string |
None. |
|
| password | string |
None. |
|
| username | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"calllogs": [
{
"calltimestamp": "sample string 1",
"calltype": "sample string 2",
"duration": "sample string 3",
"phonenumber": "sample string 4"
},
{
"calltimestamp": "sample string 1",
"calltype": "sample string 2",
"duration": "sample string 3",
"phonenumber": "sample string 4"
}
],
"loginLocation": "sample string 1",
"password": "sample string 2",
"username": "sample string 3"
}
application/xml, text/xml
Sample:
<LoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Oneview.LeadAppModel">
<calllogs>
<Calllog>
<calltimestamp>sample string 1</calltimestamp>
<calltype>sample string 2</calltype>
<duration>sample string 3</duration>
<phonenumber>sample string 4</phonenumber>
</Calllog>
<Calllog>
<calltimestamp>sample string 1</calltimestamp>
<calltype>sample string 2</calltype>
<duration>sample string 3</duration>
<phonenumber>sample string 4</phonenumber>
</Calllog>
</calllogs>
<loginLocation>sample string 1</loginLocation>
<password>sample string 2</password>
<username>sample string 3</username>
</LoginModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.