Blacklisting an email address will unsubscribe the user from email and mark them as hard bounced.
We apply the default Braze rate limit of 250,000 requests per hour to this endpoint, as documented in API rate limits.
1
2
| Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
|
1
2
3
4
5
6
| curl --location --request POST 'https://rest.iad-01.braze.com/email/blacklist' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-API-KEY-HERE' \
--data-raw '{
"email": ["blacklist_email1","blacklist_email2"]
}'
|