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-ippool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IPPool",
  "title": "IPPool",
  "type": "object",
  "description": "An IP pool grouping dedicated IPs.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The pool name.",
      "example": "Example Title"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the pool was created.",
      "example": "2026-01-15T10:30:00Z"
    },
    "ips": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DedicatedIP"
      },
      "description": "The dedicated IPs in this pool.",
      "example": []
    }
  }
}