Suppressions
Remove Recipient Suppression
Remove a workspace soft-bounce escalation for one associated recipient.
DELETE
/
api
/
v1
/
suppressions
/
{email}
Remove Recipient Suppression
curl --request DELETE \
--url https://api.sequenzy.com/api/v1/suppressions/{email} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.sequenzy.com/api/v1/suppressions/{email}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.sequenzy.com/api/v1/suppressions/{email}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sequenzy.com/api/v1/suppressions/{email}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sequenzy.com/api/v1/suppressions/{email}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.sequenzy.com/api/v1/suppressions/{email}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sequenzy.com/api/v1/suppressions/{email}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"email": "user@example.com",
"removed": true,
"removedLocalBounce": true,
"removedSesRegions": [],
"reactivatedSubscriberIds": ["subscriber_123"],
"remainingSuppression": {
"email": "user@example.com",
"knownRecipient": true,
"suppressed": false,
"local": {
"suppressed": false,
"suppressionType": null,
"reason": null,
"source": null,
"suppressionId": null,
"scope": null,
"delistable": false
},
"ses": {
"regionsChecked": ["us-east-1"],
"entries": []
}
}
}
{
"success": false,
"error": "Cannot remove suppression for user@example.com: the address is not associated with this company."
}
{
"success": false,
"error": "Cannot remove suppression for user@example.com: this suppression is protected. Only company-scoped soft-bounce escalations can be removed."
}
Remove Recipient Suppression
Removes asoft_bounce_escalation for one exact recipient associated with the
selected company. If a company subscriber was in the bounced state, it is
reactivated and restored to its active list audiences.
Only the selected workspace’s company row is cleared. Platform-wide
invalid_recipient and unknown_hard_bounce rows and Amazon SES account-level
suppressions are protected, as are other workspaces’ scoped rows.
Global invalid-recipient, company hard-bounce, Amazon SES account-level,
complaint, and unsubscribe protections are never removed. Requests for a
protected suppression return
409. Confirm that the temporary delivery
problem is resolved before removing a soft-bounce escalation.Request
string
required
Exact recipient email address. The address must already be associated with the
selected company through a subscriber or email-send record.
string
Optional AWS SES region such as
us-east-1. This limits the SES inspection in
remainingSuppression; it never removes an SES account-level entry.curl -X DELETE \
"https://api.sequenzy.com/api/v1/suppressions/user%40example.com" \
-H "Authorization: Bearer API_KEY"
Responses
{
"success": true,
"email": "user@example.com",
"removed": true,
"removedLocalBounce": true,
"removedSesRegions": [],
"reactivatedSubscriberIds": ["subscriber_123"],
"remainingSuppression": {
"email": "user@example.com",
"knownRecipient": true,
"suppressed": false,
"local": {
"suppressed": false,
"suppressionType": null,
"reason": null,
"source": null,
"suppressionId": null,
"scope": null,
"delistable": false
},
"ses": {
"regionsChecked": ["us-east-1"],
"entries": []
}
}
}
{
"success": false,
"error": "Cannot remove suppression for user@example.com: the address is not associated with this company."
}
{
"success": false,
"error": "Cannot remove suppression for user@example.com: this suppression is protected. Only company-scoped soft-bounce escalations can be removed."
}
removed: false with the current status.⌘I
Remove Recipient Suppression
curl --request DELETE \
--url https://api.sequenzy.com/api/v1/suppressions/{email} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.sequenzy.com/api/v1/suppressions/{email}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.sequenzy.com/api/v1/suppressions/{email}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sequenzy.com/api/v1/suppressions/{email}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sequenzy.com/api/v1/suppressions/{email}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.sequenzy.com/api/v1/suppressions/{email}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sequenzy.com/api/v1/suppressions/{email}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"email": "user@example.com",
"removed": true,
"removedLocalBounce": true,
"removedSesRegions": [],
"reactivatedSubscriberIds": ["subscriber_123"],
"remainingSuppression": {
"email": "user@example.com",
"knownRecipient": true,
"suppressed": false,
"local": {
"suppressed": false,
"suppressionType": null,
"reason": null,
"source": null,
"suppressionId": null,
"scope": null,
"delistable": false
},
"ses": {
"regionsChecked": ["us-east-1"],
"entries": []
}
}
}
{
"success": false,
"error": "Cannot remove suppression for user@example.com: the address is not associated with this company."
}
{
"success": false,
"error": "Cannot remove suppression for user@example.com: this suppression is protected. Only company-scoped soft-bounce escalations can be removed."
}