Mailchimp · Schema

IPPool

An IP pool grouping dedicated IPs.

CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

Properties

Name Type Description
name string The pool name.
created_at string When the pool was created.
ips array The dedicated IPs in this pool.
View JSON Schema on GitHub

JSON Schema

mailchimp-transactional-ip-pool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IPPool",
  "type": "object",
  "description": "An IP pool grouping dedicated IPs.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The pool name."
    },
    "created_at": {
      "type": "string",
      "description": "When the pool was created."
    },
    "ips": {
      "type": "array",
      "description": "The dedicated IPs in this pool."
    }
  }
}