Adobe Campaign · Schema

DeliveryRequest

SOAP envelope containing the delivery internal name or ID for preparation and sending operations.

Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing

Properties

Name Type Description
deliveryId integer Internal ID of the delivery.
deliveryName string Internal name of the delivery.
View JSON Schema on GitHub

JSON Schema

adobe-campaign-classic-delivery-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-schema/adobe-campaign-classic-delivery-request-schema.json",
  "title": "DeliveryRequest",
  "description": "SOAP envelope containing the delivery internal name or ID for preparation and sending operations.",
  "type": "object",
  "properties": {
    "deliveryId": {
      "type": "integer",
      "description": "Internal ID of the delivery.",
      "example": 42
    },
    "deliveryName": {
      "type": "string",
      "description": "Internal name of the delivery.",
      "example": "Example Campaign"
    }
  }
}