Emaill addresses of recipients who marked your messages as a spam (for ESPs that support FBL).
Import CSV file containing a list of addresses to add to the complaint list.The CSV file must be 25MB or under and must contain the following column headers: address, created_at
A 202 response
A 400 response
A 500 response
{- "message": "file uploaded successfully"
}
Fetch a single complaint records to check if a given address is present in the list of complaints.
{- "address": "alice@example.com",
- "created_at": "Fri, 18 Oct 2024 18:28:14 UTC"
}
The delivery to the deleted email address resumes until there is another complaint.
{- "message": "Complaint addresses for this domain have been removed",
- "address": "foo@bar.com"
}
Paginate a list of complaints for the domain.
A 200 response
required | Array of objects |
required | object |
A 400 response
{- "items": [
- {
- "address": "alice@example.com",
- "created_at": "Fri, 18 Oct 2024 18:28:14 UTC"
}
], - "paging": {
- "last": "<last page url>",
- "previous": "<previous page url>",
- "first": "<first page url>",
- "next": "<next page url>"
}
}
Request body is expected to be a valid JSON encoded sting containing up to 1000 complaint records or a single complaint record as application/form-data
{- "message": "2 complaint addresses have been added to the complaints table"
}
Clears all email addresses with complaints from the domain. Delivery to the deleted email addresses will longer be suppressed.
{- "message": "Complaint addresses for this domain have been removed"
}