Auth0 · Schema

FlowActionSalesforceCreateLeadParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
first_name string
last_name string
company string
email string
phone string
payload object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionsalesforcecreateleadparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionSalesforceCreateLeadParams",
  "title": "FlowActionSalesforceCreateLeadParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "last_name",
    "company"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "first_name": {
      "type": "string"
    },
    "last_name": {
      "type": "string",
      "minLength": 1
    },
    "company": {
      "type": "string",
      "minLength": 1
    },
    "email": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "payload": {
      "$ref": "#/components/schemas/FlowActionSalesforceCreateLeadParamsPayload"
    }
  }
}