Auth0 · Schema

RevokeUserAccessRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
session_id string ID of the session to revoke.
preserve_refresh_tokens boolean Whether to preserve the refresh tokens associated with the session.
View JSON Schema on GitHub

JSON Schema

auth0-revokeuseraccessrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RevokeUserAccessRequestContent",
  "title": "RevokeUserAccessRequestContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "session_id": {
      "type": "string",
      "description": "ID of the session to revoke.",
      "maxLength": 50,
      "format": "session-id"
    },
    "preserve_refresh_tokens": {
      "type": "boolean",
      "description": "Whether to preserve the refresh tokens associated with the session.",
      "default": false
    }
  }
}