AhaSend · Schema

Tracking

Tracking schema from AhaSend API

EmailTransactional EmailDeveloper ToolsSMTPWebhooks

Properties

Name Type Description
open boolean Whether to track opens
click boolean Whether to track clicks
View JSON Schema on GitHub

JSON Schema

openapi-v2-tracking-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-tracking-schema.json",
  "title": "Tracking",
  "description": "Tracking schema from AhaSend API",
  "type": "object",
  "properties": {
    "open": {
      "type": "boolean",
      "nullable": true,
      "description": "Whether to track opens",
      "example": true
    },
    "click": {
      "type": "boolean",
      "nullable": true,
      "description": "Whether to track clicks",
      "example": true
    }
  },
  "example": {
    "open": true,
    "click": true
  }
}