An email is considered bounced when the message is undeliverable and then returned to the server that sent it. Bounced emails can be either permanent or temporary failures to deliver the message.
For more information, see our Bounces documentation.
You can also manage bounced emails from the Suppression settings menu in the Twilio SendGrid App.
This endpoint will return the total number of bounces by classification in descending order for each day. You can retrieve the bounce classification totals in CSV format by specifying "text/csv"
in the Accept header.
Bearer <<YOUR_API_KEY_HERE>>
Specifies the content type to be returned by this endpoint. You can choose to receive CSV-formatted data by passing "text/csv" in the header.
application/json
Possible values: application/json
text/csv
The on-behalf-of
header allows you to make API calls from a parent account on behalf of the parent's Subusers or customer accounts. You will use the parent account's API key when using this header. When making a call on behalf of a customer account, the property value should be "account-id" followed by the customer account's ID (e.g., on-behalf-of: account-id <account-id>
). When making a call on behalf of a Subuser, the property value should be the Subuser's username (e.g., on-behalf-of: <subuser-username>
). See On Behalf Of for more information.
The start of the time range, in YYYY-MM-DD format, when a bounce was created (inclusive).
The end of the time range, in YYYY-MM-DD format, when a bounce was created (inclusive).
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const headers = {5"Accept": "application/json"6};7const queryParams = {8"start_date": "2010-01-22"9};1011const request = {12url: `/v3/suppression/bounces/classifications`,13method: 'GET',14headers: headers,15qs: queryParams16}1718client.request(request)19.then(([response, body]) => {20console.log(response.statusCode);21console.log(response.body);22})23.catch(error => {24console.error(error);25});