Klaviyo · Schema

FlowUpdateQueryResourceObject

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type object
id string ID of the Flow to update. Ex: XVTP5Q
attributes object
View JSON Schema on GitHub

JSON Schema

klaviyo-flowupdatequeryresourceobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowUpdateQueryResourceObject",
  "title": "FlowUpdateQueryResourceObject",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/FlowEnum"
    },
    "id": {
      "description": "ID of the Flow to update. Ex: XVTP5Q",
      "type": "string"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "status": {
          "description": "Status you want to update the flow to. ['draft', 'manual', or 'live']",
          "type": "string"
        }
      },
      "required": [
        "status"
      ]
    }
  },
  "required": [
    "type",
    "id",
    "attributes"
  ]
}