Auth0 · Schema

DeleteOrganizationMembersRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
members array List of user IDs to remove from the organization.
View JSON Schema on GitHub

JSON Schema

auth0-deleteorganizationmembersrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeleteOrganizationMembersRequestContent",
  "title": "DeleteOrganizationMembersRequestContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "members"
  ],
  "properties": {
    "members": {
      "type": "array",
      "description": "List of user IDs to remove from the organization.",
      "minItems": 1,
      "items": {
        "type": "string",
        "format": "user-id-with-max-length"
      }
    }
  }
}