Adobe Campaign · Schema

WriteCollectionRequest

SOAP envelope containing a collection of entity elements for batch write operations. Each entity can specify its own _operation.

Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing

Properties

Name Type Description
collection object
View JSON Schema on GitHub

JSON Schema

adobe-campaign-classic-write-collection-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-write-collection-request-schema.json",
  "title": "WriteCollectionRequest",
  "description": "SOAP envelope containing a collection of entity elements for batch write operations. Each entity can specify its own _operation.",
  "type": "object",
  "properties": {
    "collection": {
      "type": "object",
      "properties": {
        "_schema": {
          "type": "string",
          "description": "Target schema name for all entities."
        },
        "entities": {
          "type": "array",
          "description": "Array of entity elements to write.",
          "items": {
            "type": "object"
          }
        }
      }
    }
  }
}