Mailchimp · Schema

DedicatedIP

Information about a dedicated IP address.

CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

Properties

Name Type Description
ip string The dedicated IP address.
created_at string When the IP was provisioned.
pool string The IP pool this address belongs to.
domain string The reverse DNS domain for the IP.
custom_dns object Custom DNS settings for the IP.
warmup object IP warmup status.
View JSON Schema on GitHub

JSON Schema

mailchimp-transactional-dedicated-ip-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DedicatedIP",
  "type": "object",
  "description": "Information about a dedicated IP address.",
  "properties": {
    "ip": {
      "type": "string",
      "description": "The dedicated IP address."
    },
    "created_at": {
      "type": "string",
      "description": "When the IP was provisioned."
    },
    "pool": {
      "type": "string",
      "description": "The IP pool this address belongs to."
    },
    "domain": {
      "type": "string",
      "description": "The reverse DNS domain for the IP."
    },
    "custom_dns": {
      "type": "object",
      "description": "Custom DNS settings for the IP."
    },
    "warmup": {
      "type": "object",
      "description": "IP warmup status."
    }
  }
}