When Marketing Cloud Engagement sends experience delivery failures, high bounce rates, or ISP-level blocks, extracting detailed bounce data from the account is the first step toward diagnosing and resolving deliverability issues. Bounce data includes the SMTP bounce reason, SMTP message, bounce type, bounce category, and the domain that rejected the message — all of which help identify whether the issue is a hard bounce, a soft bounce, a temporary ISP block, or a reputation-related rejection. This article provides two methods to extract this data: a Tracking Extract (the simplest approach) and a SQL Query against the bounce Data View (the most flexible approach for targeted analysis).
Use one of the following two methods to extract bounce and block data from your Marketing Cloud account. Option 1 is the simplest — Option 2 provides more flexibility for targeted analysis of specific sends or time windows.
AccountID (Number) OYBAccountID (Number) JobID (Number) ListID (Number) SubscriberID (Number) SubscriberKey (Text, 250 character max) EventDate (Date) Domain (Text, 128 character max) BounceTypeID (Number) BounceCategoryID (Number) SMTPBounceReason (Text) SMTPMessage (Text) SMTPCode (Number)
--Run this query to pull bounce messages within the past 5 days Select AccountID, OYBAccountID, JobID, ListID, SubscriberID, SubscriberKey, EventDate, Domain, BounceTypeID, BounceCategoryID, SMTPBounceReason, SMTPMessage, SMTPCode From _bounce where eventDate > dateadd(day,-5,getdate())
--Run this query to find bounces and blocks for a specific send/jobid. Select AccountID, OYBAccountID, JobID, ListID, SubscriberID, SubscriberKey, EventDate, Domain, BounceTypeID, BounceCategoryID, SMTPBounceReason, SMTPMessage, SMTPCode From _bounce where jobid = 'JOBID' --Replace JOBID with the numeric Job ID from the send
-- (found in Email Studio > Tracking > Send Summary)
Note: Changes to these queries may be unsupported by Marketing Cloud Support, depending on your Account Support Entitlement.
Detailed information on bounce categories and suggested resolutions can be found in our Bounce Mail Management in Email Studio Help documentation.
For more information regarding best practices to help increase your deliverability, you can visit: Email Deliverability Best Practices for Email Studio
000389739

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.