Remove Hard Bounces
post
/email/bounce/remove
This endpoint allows you to remove email addresses from your Braze bounce list. We will also remove them from the bounce list maintained by your email provider.
important:
Looking for the api_key
parameter?
As of May 2020, Braze has changed how we read API keys to be more secure. Now API keys must be passed as a request header, please see YOUR_REST_API_KEY
within the Example Request below.
Braze will continue to support the api_key
being passed through the request body and URL parameters, but will eventually be sunset. Please update your API calls accordingly.
Request Body
1
2
Content-Type: application/json
Authorization: Bearer YOUR_REST_API_KEY
1
2
3
{
"email": "example@123.com"
}
Request Parameters
Parameter | Required | Data Type | Description |
---|---|---|---|
email |
Yes | 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/bounce/remove' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_REST_API_KEY' \
--data-raw '{
"email": "example@xyz.abc"
}'