Klaviyo · Schema

FlowWebhook

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
url string
headers object
body string
name string
id string Not allowed on create.
View JSON Schema on GitHub

JSON Schema

klaviyo-flowwebhook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowWebhook",
  "title": "FlowWebhook",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "nullable": true
    },
    "headers": {
      "type": "object",
      "nullable": true
    },
    "body": {
      "type": "string",
      "nullable": true
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "id": {
      "description": "Not allowed on create.",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "url"
  ]
}