Auth0 · Schema

UpdateActionBindingsRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
bindings array The actions that will be bound to this trigger. The order in which they are included will be the order in which they are executed.
View JSON Schema on GitHub

JSON Schema

auth0-updateactionbindingsrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateActionBindingsRequestContent",
  "title": "UpdateActionBindingsRequestContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "bindings": {
      "type": "array",
      "description": "The actions that will be bound to this trigger. The order in which they are included will be the order in which they are executed.",
      "items": {
        "$ref": "#/components/schemas/UpdateActionBindingItem"
      }
    }
  }
}