TransactionalMessageRequest

TransactionalMessageRequest schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
email string Recipient email address.
ctx object Context data for personalizing the transactional message.
View JSON Schema on GitHub

JSON Schema

campaign-api-transactional-message-request-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-request-schema.json",
  "title": "TransactionalMessageRequest",
  "description": "TransactionalMessageRequest schema",
  "type": "object",
  "required": [
    "email",
    "ctx"
  ],
  "properties": {
    "email": {
      "type": "string",
      "description": "Recipient email address."
    },
    "ctx": {
      "type": "object",
      "description": "Context data for personalizing the transactional message."
    }
  }
}