Klaviyo · Schema

SendWebhookActionData

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
message object
status string Flow action status.
View JSON Schema on GitHub

JSON Schema

klaviyo-sendwebhookactiondata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SendWebhookActionData",
  "title": "SendWebhookActionData",
  "type": "object",
  "properties": {
    "message": {
      "$ref": "#/components/schemas/FlowWebhook"
    },
    "status": {
      "description": "Flow action status.",
      "type": "string",
      "example": "draft",
      "default": "draft",
      "enum": [
        "disabled",
        "draft",
        "live",
        "manual"
      ]
    }
  },
  "required": [
    "message"
  ]
}