Mailchimp · Schema

AccountStats

Aggregate sending statistics for a time period.

CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

Properties

Name Type Description
sent integer Total messages sent.
hard_bounces integer Total hard bounces.
soft_bounces integer Total soft bounces.
rejects integer Total rejections.
complaints integer Total spam complaints.
unsubs integer Total unsubscribes.
opens integer Total opens.
unique_opens integer Unique opens.
clicks integer Total clicks.
unique_clicks integer Unique clicks.
View JSON Schema on GitHub

JSON Schema

mailchimp-accountstats-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountStats",
  "title": "AccountStats",
  "type": "object",
  "description": "Aggregate sending statistics for a time period.",
  "properties": {
    "sent": {
      "type": "integer",
      "description": "Total messages sent.",
      "example": 10
    },
    "hard_bounces": {
      "type": "integer",
      "description": "Total hard bounces.",
      "example": 10
    },
    "soft_bounces": {
      "type": "integer",
      "description": "Total soft bounces.",
      "example": 10
    },
    "rejects": {
      "type": "integer",
      "description": "Total rejections.",
      "example": 10
    },
    "complaints": {
      "type": "integer",
      "description": "Total spam complaints.",
      "example": 10
    },
    "unsubs": {
      "type": "integer",
      "description": "Total unsubscribes.",
      "example": 10
    },
    "opens": {
      "type": "integer",
      "description": "Total opens.",
      "example": 10
    },
    "unique_opens": {
      "type": "integer",
      "description": "Unique opens.",
      "example": 10
    },
    "clicks": {
      "type": "integer",
      "description": "Total clicks.",
      "example": 10
    },
    "unique_clicks": {
      "type": "integer",
      "description": "Unique clicks.",
      "example": 10
    }
  }
}