ESP Suppression

Look up an ESP-suppressed address

Look up an email address to learn if, and why, it was suppressed by the email service provider (ESP).

get/v1/esp/search_suppression/{email_address}

Response

Returns an array of suppressed email addresses.

category'bounces' | 'spam'

The reason the addresses are suppressed.

Example response

{
  "category": "bounces",
  "suppressions": [
    {
      "created": 1650895738,
      "email": "bounced.person@example.com",
      "reason": "Uploaded manually via api.customer.io",
      "status": "550"
    }
  ]
}

Changes

Changed in 1 of the 3 revisions of this API.1

    • added the media type application/json for the response with the status

      response-media-type-added