Auth0 · Schema

FlowActionHubspotUpsertContactParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
email string
properties array
View JSON Schema on GitHub

JSON Schema

auth0-flowactionhubspotupsertcontactparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionHubspotUpsertContactParams",
  "title": "FlowActionHubspotUpsertContactParams",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "connection_id",
    "email"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "email": {
      "type": "string"
    },
    "properties": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FlowActionHubspotUpsertContactParamsProperty"
      }
    }
  }
}