PagerDuty

PAGERDUTY_GET_USER_SESSION_BY_TYPE

Retrieves detailed information about a specific user session in PagerDuty. This endpoint allows you to fetch session-related data for a particular user, filtered by session type and identified by a unique session ID. It's useful for monitoring user activity, troubleshooting authentication issues, or auditing system access. The endpoint returns data about the specified session, which may include creation time, last activity timestamp, expiration time, and other relevant session attributes. It should be used when detailed information about a user's specific session is required, but it does not provide information about other sessions or general user account details.

Remote pagerduty

Other tools also called PAGERDUTY_GET_USER_SESSION_BY_TYPE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id",
      "description": "The ID of the resource."
    },
    "type": {
      "type": "string",
      "title": "Type",
      "description": "The session type for the user session ID."
    },
    "session_id": {
      "type": "string",
      "title": "Session Id",
      "description": "The session ID for the user."
    }
  }
}