POST api/Management/LogonSessionInfo
Request Information
URI Parameters
None.
Body Parameters
LogonSessionRequestModelName | Description | Type | Additional information |
---|---|---|---|
SessionGID | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "SessionGID": "sample string 1" }
application/xml, text/xml
Sample:
<LogonSessionRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models.DTO"> <SessionGID>sample string 1</SessionGID> </LogonSessionRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ActionLogModelName | Description | Type | Additional information |
---|---|---|---|
GID | string |
None. |
|
UserID | integer |
None. |
|
Action | string |
None. |
|
Notes | string |
None. |
|
CreatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "GID": "sample string 1", "UserID": 2, "Action": "sample string 3", "Notes": "sample string 4", "CreatedDate": "2025-09-05T16:02:53.887358+00:00" }, { "GID": "sample string 1", "UserID": 2, "Action": "sample string 3", "Notes": "sample string 4", "CreatedDate": "2025-09-05T16:02:53.887358+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfActionLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models.DTO"> <ActionLogModel> <Action>sample string 3</Action> <CreatedDate>2025-09-05T16:02:53.887358+00:00</CreatedDate> <GID>sample string 1</GID> <Notes>sample string 4</Notes> <UserID>2</UserID> </ActionLogModel> <ActionLogModel> <Action>sample string 3</Action> <CreatedDate>2025-09-05T16:02:53.887358+00:00</CreatedDate> <GID>sample string 1</GID> <Notes>sample string 4</Notes> <UserID>2</UserID> </ActionLogModel> </ArrayOfActionLogModel>