This endpoint returns comprehensive session information including timeout configuration, renewal count, and real-time expiration status.
Path Parameters
The unique identifier of the session
Response
Unique session identifier
ISO timestamp of session creation
ISO timestamp of last activity in the session
ISO timestamp when the session will expire
Current timeout configuration for the sessionShow Configuration Properties
Inactivity timeout in minutes
Whether auto-renewal is enabled
Maximum total session duration
Minutes before expiration to trigger warning
Number of times the session has been renewed
Milliseconds until session expiration
Whether the session is within the warning threshold
Any metadata attached to the session
Error Responses
// 404 - Session not found
{
"error": "Session not found",
"code": "SESSION_NOT_FOUND",
"details": {
"sessionId": "abc-123"
}
}
// 410 - Session expired
{
"error": "Session has expired",
"code": "SESSION_EXPIRED",
"details": {
"sessionId": "abc-123",
"expiresAt": "2024-01-15T10:30:00Z"
}
}
Session information retrieved successfully
When the session will expire
Current timeout configuration
timeoutConfig.timeoutMinutes
timeoutConfig.maxDurationMinutes
timeoutConfig.warningThresholdMinutes
Number of times the session has been renewed
Milliseconds until session expiration
Whether the session is within the warning threshold