Auth0 · Schema

FlowActionMailchimpUpsertMemberParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
list_id string
member object
View JSON Schema on GitHub

JSON Schema

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