Postmark · Schema

TemplatesPushResponse

EmailsMessagingTransactional EmailDeliverabilitySMTP

Properties

Name Type Description
TotalCount integer
Templates array
View JSON Schema on GitHub

JSON Schema

postmark-templatespushresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TemplatesPushResponse",
  "title": "TemplatesPushResponse",
  "type": "object",
  "properties": {
    "TotalCount": {
      "type": "integer"
    },
    "Templates": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Action": {
            "type": "string"
          },
          "TemplateId": {
            "type": "integer"
          },
          "Alias": {
            "type": "string"
          },
          "Name": {
            "type": "string"
          }
        }
      }
    }
  },
  "description": ""
}