Auth0 · Schema

UpdateEnabledClientConnectionsRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-updateenabledclientconnectionsrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateEnabledClientConnectionsRequestContent",
  "title": "UpdateEnabledClientConnectionsRequestContent",
  "type": "array",
  "minItems": 1,
  "items": {
    "type": "object",
    "additionalProperties": false,
    "required": [
      "client_id",
      "status"
    ],
    "properties": {
      "client_id": {
        "type": "string",
        "description": "The client_id of the client whose status will be changed. Note that the limit per PATCH request is 50 clients.",
        "format": "client-id"
      },
      "status": {
        "type": "boolean",
        "description": "Whether the connection is enabled or not for this client_id"
      }
    }
  }
}