Logged User Information APIs
Get Logged In Users (GET)
Get Logged In Users.
Route
|
URI |
/api/users/loggedin |
|
Method |
GET |
|
Result |
JSON – IActionResult |
Parameters
None
Example
GET http://localhost/api/users/loggedin
Bulk Logout (POST)
Bulk Logout.
Route
|
URI |
/api/users/logout |
|
Method |
POST |
|
Result |
JSON – IActionResult |
Request Payload
List<BulkLogoutRequestEntry> object:
|
Property |
Type |
Mandatory |
Description |
|---|---|---|---|
|
ClientType |
string |
No |
|
|
SessionString |
string |
No |
|
Example
POST http://localhost/api/users/logout Content-Type: application/json { "ClientType": "sample", "SessionString": "sample" }