Postmark · Schema

ServerListingResponse

The results of listing servers.

EmailsMessagingTransactional EmailDeliverabilitySMTP

Properties

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

JSON Schema

postmark-serverlistingresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServerListingResponse",
  "title": "ServerListingResponse",
  "type": "object",
  "properties": {
    "TotalCount": {
      "type": "integer"
    },
    "Servers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExtendedServerInfo"
      }
    }
  },
  "description": "The results of listing servers."
}