curl --request DELETE \
--url https://app.loops.so/api/v1/contacts/suppression \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Email removed from suppression list.",
"removalQuota": {
"limit": 100,
"remaining": 4
}
}
Remove suppression for a contact by email address or user ID.
curl --request DELETE \
--url https://app.loops.so/api/v1/contacts/suppression \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Email removed from suppression list.",
"removalQuota": {
"limit": 100,
"remaining": 4
}
}
400 Bad Request will be returned if there is an invalid request, the contact is not suppressed, or if you reach your removal quota.
If no contact is found, a 404 Not Found will be returned.
{
"success": true,
"message": "Email removed from suppression list.",
"removalQuota": {
"limit": 100,
"remaining": 4
}
}
Was this page helpful?