Remove email addresses from spam list
post
/email/spam/remove
Use this endpoint to remove email addresses from your Braze spam list and spam list maintained by your email provider.
Rate limit
We apply the default Braze rate limit of 250,000 requests per hour to this endpoint, as documented in API rate limits.
Request body
1
2
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
1
2
3
{
"email": "[email protected]"
}
Request parameters
Parameter | Required | Data Type | Description |
---|---|---|---|
email |
Required | String or array | String email address to modify, or an array of up to 50 email addresses to modify. |
Example request
1
2
3
4
5
6
curl --location --request POST 'https://rest.iad-01.braze.com/email/spam/remove' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-REST-API-KEY' \
--data-raw '{
"email": "[email protected]"
}'