Mailchimp · Schema

TemplateInfo

Information about a Mandrill template.

CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

Properties

Name Type Description
slug string The URL-safe slug for the template.
name string The display name of the template.
labels array Labels applied to the template for organization.
code string The HTML code of the template.
subject string The default subject line.
from_email string The default from address.
from_name string The default from name.
text string The default text content.
publish_name string The name of the published version.
publish_code string The HTML code of the published version.
publish_subject string The subject of the published version.
publish_from_email string The from address of the published version.
publish_from_name string The from name of the published version.
publish_text string The text content of the published version.
published_at string When the template was last published.
created_at string When the template was created.
updated_at string When the template was last updated.
View JSON Schema on GitHub

JSON Schema

mailchimp-transactional-template-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TemplateInfo",
  "type": "object",
  "description": "Information about a Mandrill template.",
  "properties": {
    "slug": {
      "type": "string",
      "description": "The URL-safe slug for the template."
    },
    "name": {
      "type": "string",
      "description": "The display name of the template."
    },
    "labels": {
      "type": "array",
      "description": "Labels applied to the template for organization."
    },
    "code": {
      "type": "string",
      "description": "The HTML code of the template."
    },
    "subject": {
      "type": "string",
      "description": "The default subject line."
    },
    "from_email": {
      "type": "string",
      "description": "The default from address."
    },
    "from_name": {
      "type": "string",
      "description": "The default from name."
    },
    "text": {
      "type": "string",
      "description": "The default text content."
    },
    "publish_name": {
      "type": "string",
      "description": "The name of the published version."
    },
    "publish_code": {
      "type": "string",
      "description": "The HTML code of the published version."
    },
    "publish_subject": {
      "type": "string",
      "description": "The subject of the published version."
    },
    "publish_from_email": {
      "type": "string",
      "description": "The from address of the published version."
    },
    "publish_from_name": {
      "type": "string",
      "description": "The from name of the published version."
    },
    "publish_text": {
      "type": "string",
      "description": "The text content of the published version."
    },
    "published_at": {
      "type": "string",
      "description": "When the template was last published."
    },
    "created_at": {
      "type": "string",
      "description": "When the template was created."
    },
    "updated_at": {
      "type": "string",
      "description": "When the template was last updated."
    }
  }
}