POST ApiUser/LogOff
Logs off all sessions contained in an array of SessionLogKeys submitted in the Request Body
Request Information
URI Parameters
Body Parameters
Collection of SessionName | Description | Type | Additional Information |
---|---|---|---|
SessionLogKey | string |
Request Formats
application/json, text/json
Sample:
[ { "SessionLogKey": "sample string 1" }, { "SessionLogKey": "sample string 1" } ]
application/xml, text/xml
Sample:
<ArrayOfSession xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.User"> <Session> <SessionLogKey>sample string 1</SessionLogKey> </Session> <Session> <SessionLogKey>sample string 1</SessionLogKey> </Session> </ArrayOfSession>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Logs off all sessions contained in an array of SessionLogKeys submitted in the Request Body
AgvApiUserName | Description | Type | Additional Information |
---|---|---|---|
Status |
Status of the API call. |
string | |
Message |
Message of the API call. |
string | |
Count |
Count of how many records returned (GET) or logged off (POST). |
string | |
APIUsers |
JSON dictionary of API Users |
Collection of ApiUser |
Response Formats
application/json, text/json
Sample:
{ "Status": "sample string 1", "Message": "sample string 2", "Count": "sample string 3", "APIUsers": [ { "UseriD": "sample string 1", "Application": "sample string 2", "SessionLogKey": "sample string 3", "SessionID": "sample string 4" }, { "UseriD": "sample string 1", "Application": "sample string 2", "SessionLogKey": "sample string 3", "SessionID": "sample string 4" } ] }
application/xml, text/xml
Sample:
<AgvApiUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.User"> <APIUsers> <ApiUser> <Application>sample string 2</Application> <SessionID>sample string 4</SessionID> <SessionLogKey>sample string 3</SessionLogKey> <UseriD>sample string 1</UseriD> </ApiUser> <ApiUser> <Application>sample string 2</Application> <SessionID>sample string 4</SessionID> <SessionLogKey>sample string 3</SessionLogKey> <UseriD>sample string 1</UseriD> </ApiUser> </APIUsers> <Count>sample string 3</Count> <Message>sample string 2</Message> <Status>sample string 1</Status> </AgvApiUser>