Auth0 · Schema

FlowActionAuth0SendRequestParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
pathname string
method string
headers object
params object
payload object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionauth0sendrequestparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionAuth0SendRequestParams",
  "title": "FlowActionAuth0SendRequestParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "pathname"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "pathname": {
      "type": "string"
    },
    "method": {
      "type": "string",
      "enum": [
        "GET",
        "POST",
        "PUT",
        "PATCH",
        "DELETE"
      ]
    },
    "headers": {
      "$ref": "#/components/schemas/FlowActionAuth0SendRequestParamsHeaders"
    },
    "params": {
      "$ref": "#/components/schemas/FlowActionAuth0SendRequestParamsQueryParams"
    },
    "payload": {
      "$ref": "#/components/schemas/FlowActionAuth0SendRequestParamsPayload"
    }
  }
}