Release a suppressed address
curl --request DELETE \
--url https://{organization}.rescueconsole.com/api/communications/suppressions/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{organization}.rescueconsole.com/api/communications/suppressions/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{organization}.rescueconsole.com/api/communications/suppressions/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text){
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}Suppressions
Release a suppressed address
Takes one of your organization’s own suppressions off the list, so email can go to that address again. Release one only when the person has asked to hear from you again. Nothing else releases it: not even the recipient resubscribing through the email service. A suppression that applies to every organization (a hard bounce) cannot be released (403): correct the address on the person’s record instead. Needs write on Communications.
DELETE
/
api
/
communications
/
suppressions
/
{id}
Release a suppressed address
curl --request DELETE \
--url https://{organization}.rescueconsole.com/api/communications/suppressions/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{organization}.rescueconsole.com/api/communications/suppressions/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{organization}.rescueconsole.com/api/communications/suppressions/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text){
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}