Klaviyo · Schema

ManualAddManualMethodFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
field string
method string
filter object Optional filter on a specific list of user email addresses who initiated the manual action
View JSON Schema on GitHub

JSON Schema

klaviyo-manualaddmanualmethodfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManualAddManualMethodFilter",
  "title": "ManualAddManualMethodFilter",
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "enum": [
        "method"
      ]
    },
    "method": {
      "type": "string",
      "enum": [
        "manual_add"
      ]
    },
    "filter": {
      "description": "Optional filter on a specific list of user email addresses who initiated the manual action",
      "$ref": "#/components/schemas/InStringArrayFilter",
      "nullable": true
    }
  },
  "required": [
    "field",
    "method"
  ]
}