Skip to main content
POST
/
suppressions
/
remove
Ruby
Helo.configure do |config|
  config.access_token = "YOUR_BEARER_TOKEN"
end

remove_suppressions_request = Helo::RemoveSuppressionsRequest.new(
  channel_id: "550e8400-e29b-41d4-a716-446655440000",
  mail_type: Helo::MailType::TRANSACTIONAL,
  emails: ["example1", "example2"]
)
Helo::Suppressions.remove(remove_suppressions_request)
{
  "results": [
    {
      "email": "<string>",
      "success": true,
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
channelId
string<uuid>
required
mailType
enum<string>
required
Available options:
transactional,
broadcast
emails
string[]
required

Response

OK

results
object[]
required