Unified.to · Schema

MarketingCampaign

IntegrationsUnified API

Properties

Name Type Description
created_at string
from_email string
from_name string
id string
list_ids object
name string
preview_text string
raw object
reply_to_email string
send_at string
status string
subject_line string
type string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-marketingcampaign-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MarketingCampaign",
  "title": "MarketingCampaign",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "from_email": {
      "type": "string"
    },
    "from_name": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "list_ids": {
      "$ref": "#/components/schemas/property_MarketingCampaign_list_ids"
    },
    "name": {
      "type": "string"
    },
    "preview_text": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "reply_to_email": {
      "type": "string"
    },
    "send_at": {
      "format": "date-time",
      "type": "string"
    },
    "status": {
      "enum": [
        "DRAFT",
        "SCHEDULED",
        "SENDING",
        "SENT",
        "CANCELLED",
        "PAUSED",
        "ARCHIVED",
        "OTHER"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "subject_line": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}