v1

latestOpenAPI 3.1.02026-07-2616459400.5 KB
Suppression APIs

Remove Email(s) from Suppression List

This endpoint allows you to remove one or more email addresses from your suppression list. Once removed, these addresses will be eligible to receive emails again from your account. This operation is useful if an address was suppressed due to a temporary issue (like a bounce) or has since opted back in to receive communications. Note: While you can remove suppressed addresses, it's good practice to continue suppressing recipients who have explicitly opted out or shown no engagement.

delete/suppressions/global/email

Headers

on_behalf_ofstring

Optional header used when making API calls with a master account’s API key. It allows actions to be performed on behalf of a specific subaccount by specifying the subaccount’s username.

Request body

emailstring[] required

A list of email addresses to be removed from the suppression list. The list must contain between 1 and 1000 valid email addresses.

Example request

{
  "email": [
    "test@example.com"
  ]
}

Response

Email(s) successfully removed from suppression list. No response body is returned.