PagerDuty

PAGERDUTY_DELETE_USER_SESSION_BY_TYPE

This endpoint deletes a specific user session in PagerDuty. It is used to forcibly terminate an active session for a given user, effectively logging them out from a particular device or application. This operation is crucial for maintaining security, especially when you need to revoke access immediately, such as when a device is lost or stolen, or when suspicious activity is detected. The endpoint requires the user ID, session type, and specific session ID to accurately target and remove the desired session. It should be used cautiously as it will immediately terminate the user's access without warning.

Remote pagerduty

Other tools also called PAGERDUTY_DELETE_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."
    }
  }
}