POST api/User/RemoveSessions
Request Information
URI Parameters
None.
Body Parameters
TicketCollection| Name | Description | Type | Additional information |
|---|---|---|---|
| Identifications | Collection of TicketIdentification |
None. |
Request Formats
application/json, text/json
Sample:
{
"Identifications": [
{
"Token": "sample string 1",
"userId": 2
},
{
"Token": "sample string 1",
"userId": 2
}
]
}
application/xml, text/xml
Sample:
<TicketCollection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/myReportysModels">
<Identifications>
<TicketIdentification>
<Token>sample string 1</Token>
<userId>2</userId>
</TicketIdentification>
<TicketIdentification>
<Token>sample string 1</Token>
<userId>2</userId>
</TicketIdentification>
</Identifications>
</TicketCollection>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |