Optimizely · Schema

TransactionalMailResponse

Response from sending a transactional mail

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
status string Status of the send operation
message_id string Unique identifier for the sent message
View JSON Schema on GitHub

JSON Schema

optimizely-transactionalmailresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionalMailResponse",
  "title": "TransactionalMailResponse",
  "type": "object",
  "description": "Response from sending a transactional mail",
  "properties": {
    "status": {
      "type": "string",
      "description": "Status of the send operation",
      "enum": [
        "success",
        "failed"
      ]
    },
    "message_id": {
      "type": "string",
      "description": "Unique identifier for the sent message"
    }
  }
}