Adobe Campaign · Schema

TransactionalEventStatus

TransactionalEventStatus from Adobe Campaign API

Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing

Properties

Name Type Description
PKey string The PKEY of the event.
eventId string Unique identifier of the event.
status string Current processing status of the event.
reason string Failure reason if the event was not processed.
View JSON Schema on GitHub

JSON Schema

adobe-campaign-standard-transactional-event-status-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-standard-transactional-event-status-schema.json",
  "title": "TransactionalEventStatus",
  "description": "TransactionalEventStatus from Adobe Campaign API",
  "type": "object",
  "properties": {
    "PKey": {
      "type": "string",
      "description": "The PKEY of the event.",
      "example": "example_value"
    },
    "eventId": {
      "type": "string",
      "description": "Unique identifier of the event.",
      "example": "CAM123456"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "processing",
        "paused",
        "processed",
        "ignored",
        "deliveryFailed",
        "routingFailed",
        "targetingFailed",
        "tooOld"
      ],
      "description": "Current processing status of the event.",
      "example": "pending"
    },
    "reason": {
      "type": "string",
      "description": "Failure reason if the event was not processed.",
      "example": "example_value"
    }
  }
}