Klaviyo · Schema

CampaignSendJobPartialUpdateQueryResourceObject

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type object
id string The ID of the currently sending campaign to cancel or revert
attributes object
View JSON Schema on GitHub

JSON Schema

klaviyo-campaignsendjobpartialupdatequeryresourceobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CampaignSendJobPartialUpdateQueryResourceObject",
  "title": "CampaignSendJobPartialUpdateQueryResourceObject",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/CampaignSendJobEnum"
    },
    "id": {
      "description": "The ID of the currently sending campaign to cancel or revert",
      "type": "string"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "action": {
          "description": "The action you would like to take with this send job from among 'cancel' and 'revert'",
          "type": "string",
          "example": "cancel",
          "enum": [
            "cancel",
            "revert"
          ]
        }
      },
      "required": [
        "action"
      ]
    }
  },
  "required": [
    "type",
    "id",
    "attributes"
  ]
}