Remove Suppressed Contacts
POST/v1/suppression/remove
Remove contacts from your suppression list. Provide the same identifiers that were used when adding the contacts.
Request Body
| Field | Type | Description | Required |
|---|---|---|---|
contacts | array | Array of contact objects to remove from suppression | ✅ Yes |
Contact Object Fields
| Field | Type | Description | Required |
|---|---|---|---|
email | string | Email address to remove | ❌ No |
phone_number | string | Phone number to remove | ❌ No |
linkedin_url | string | LinkedIn URL to remove | ❌ No |
Note: At least one identifier must be provided per contact.
Example Request (JSON)
{
"contacts": [
{
"email": "donotcontact@example.com"
}
]
}
Response
The response returns the number of contacts successfully removed.
Example Success Response
{
"removed_count": 1
}
Error Handling
The API returns appropriate error messages with status codes if something goes wrong.
| Error Code | Message | Description |
|---|---|---|
| 400 | Invalid Request | Verify your request is properly formatted |
| 401 | Unauthorized | Verify you are using a valid API key |
| 500 | Internal Server Error | An unexpected error occurred. |
Request
Responses
- 200
Successful response