Klaviyo · Schema

InternalServiceActionData

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

klaviyo-internalserviceactiondata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InternalServiceActionData",
  "title": "InternalServiceActionData",
  "type": "object",
  "properties": {
    "service_configuration": {
      "nullable": true,
      "oneOf": [
        {
          "$ref": "#/components/schemas/InternalScheduledReportData"
        },
        {
          "$ref": "#/components/schemas/InternalTrackEventData"
        },
        {
          "$ref": "#/components/schemas/InternalScheduledReportBuilderReportData"
        },
        {
          "$ref": "#/components/schemas/InternalUnknownServiceData"
        }
      ]
    },
    "status": {
      "description": "Flow action status.",
      "type": "string",
      "example": "draft",
      "default": "draft",
      "enum": [
        "disabled",
        "draft",
        "live",
        "manual"
      ]
    }
  }
}