Use this endpoint to unsubscribe a 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/blocklist' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-API-KEY-HERE' \
--data-raw '{
"email": ["blocklist_email1","blocklist_email2"]
}'
|