Auth0 · Schema

FlowActionAuth0UpdateUserParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
user_id string
changes object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionauth0updateuserparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionAuth0UpdateUserParams",
  "title": "FlowActionAuth0UpdateUserParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "user_id",
    "changes"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "user_id": {
      "type": "string"
    },
    "changes": {
      "$ref": "#/components/schemas/FlowActionAuth0UpdateUserParamsChanges"
    }
  }
}