Gets a sign-in history record by ID
GET /v1/signinhistory/{signInHistoryID}
Summary
Gets a sign-in history record by ID.
Authentication
No operation-level security requirement is documented here.
Parameters
| Name | In | Type | Required | Description | Example |
|---|---|---|---|---|---|
| signInHistoryID | path | integer (int64) | Yes | The ID of the sign-in history record to retrieve. | 1 |
Request Body
No request body is documented here.
Responses
200
Success
application/json
key(integer (int64), optional)username(string, optional)remoteIPAddress(string, optional)forwardedFor(string, optional)realIP(string, optional)userAgent(string, optional)location(string, optional)deviceDescription(string, optional)referer(string, optional)successfulSignIn(boolean, optional)creationDate(string (date-time), optional)
Example
{
"key": 1,
"username": "testuser",
"remoteIPAddress": "203.0.113.42",
"forwardedFor": "Example value",
"realIP": "Example value",
"userAgent": "Example value",
"location": "Remote site",
"deviceDescription": "Example description",
"referer": "Example value",
"successfulSignIn": true,
"creationDate": "2026-03-30T12:00:00.0000000Z"
}