Klaviyo · Schema

CampaignSendJobResponseObjectResource

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type object
id string The ID of the campaign to send
attributes object
links object
View JSON Schema on GitHub

JSON Schema

klaviyo-campaignsendjobresponseobjectresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CampaignSendJobResponseObjectResource",
  "title": "CampaignSendJobResponseObjectResource",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/CampaignSendJobEnum"
    },
    "id": {
      "description": "The ID of the campaign to send",
      "type": "string"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "status": {
          "description": "The status of the send job",
          "type": "string",
          "enum": [
            "cancelled",
            "complete",
            "processing",
            "queued"
          ]
        }
      },
      "required": [
        "status"
      ]
    },
    "links": {
      "$ref": "#/components/schemas/ObjectLinks"
    }
  },
  "required": [
    "type",
    "id",
    "attributes",
    "links"
  ]
}