AhaSend · JSON Structure

Openapi V2 Tracking Structure

Tracking schema from AhaSend API

Type: object Properties: 2
EmailTransactional EmailDeveloper ToolsSMTPWebhooks

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

Properties

open click

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-tracking-structure.json",
  "name": "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
  }
}