TransactionalMessageResponse

TransactionalMessageResponse schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
PKey string
eventId string
status string
email string
View JSON Schema on GitHub

JSON Schema

campaign-api-transactional-message-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/campaign-api-transactional-message-response-schema.json",
  "title": "TransactionalMessageResponse",
  "description": "TransactionalMessageResponse schema",
  "type": "object",
  "properties": {
    "PKey": {
      "type": "string"
    },
    "eventId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "processing",
        "delivered",
        "failed"
      ]
    },
    "email": {
      "type": "string"
    }
  }
}