advancedAtomicity

If a transaction sends an email via a third-party API and then rolls back, is the email un-sent?

No — atomicity only covers operations within the transactional resource (the database); external side effects like an email API call are not covered and will not be undone.

Ready to master this question?

Generate a complete walkthrough — background, the full answer in plain language, a working code example explained line by line, a real-world scenario, common mistakes, and how this same question gets asked in different ways.

Sign in to generate a response

Next Step

Continue to How would you safely combine "update the database" and "call an external API" as one logical, all-or-nothing unit?← Back to all Transaction Mastery questions