AhaSend · Schema

MessageContentPart

MessageContentPart schema from AhaSend API

EmailTransactional EmailDeveloper ToolsSMTPWebhooks

Properties

Name Type Description
content_type string MIME content type (e.g., "text/plain", "text/html")
content string The actual content for this part
View JSON Schema on GitHub

JSON Schema

openapi-v2-message-content-part-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/openapi-v2-message-content-part-schema.json",
  "title": "MessageContentPart",
  "description": "MessageContentPart schema from AhaSend API",
  "type": "object",
  "properties": {
    "content_type": {
      "type": "string",
      "description": "MIME content type (e.g., \"text/plain\", \"text/html\")",
      "example": "text/html"
    },
    "content": {
      "type": "string",
      "description": "The actual content for this part",
      "example": "example_value"
    }
  },
  "required": [
    "content_type",
    "content"
  ]
}