AhaSend · JSON Structure

Openapi V2 Message Content Part Structure

MessageContentPart schema from AhaSend API

Type: object Properties: 2 Required: 2
EmailTransactional EmailDeveloper ToolsSMTPWebhooks

MessageContentPart is a JSON Structure definition published by AhaSend, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

content_type content

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-structure/openapi-v2-message-content-part-structure.json",
  "name": "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"
  ]
}