AhaSend · Schema

Contact

Contact schema from AhaSend API

EmailTransactional EmailDeveloper ToolsSMTPWebhooks

Properties

Name Type Description
email string
name string
View JSON Schema on GitHub

JSON Schema

api-contact-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/api-contact-schema.json",
  "title": "Contact",
  "description": "Contact schema from AhaSend API",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "examples": [
        "[email protected]",
        "[email protected]"
      ],
      "example": "[email protected]"
    },
    "name": {
      "type": "string",
      "examples": [
        "John Smith",
        "Jane Williams"
      ],
      "example": "Example Name"
    }
  },
  "required": [
    "email"
  ]
}