All termsPaymentsUpdated April 10, 2026

What Is Void Transaction?

A void transaction cancels a payment authorization before it settles, preventing funds from ever leaving the cardholder's account. Unlike a refund, no money changes hands — the hold is simply released.

Also known as: Authorization Void, Payment Cancellation, Pre-Settlement Cancellation, Transaction Cancellation

Key Takeaways

  • A void cancels an authorization before settlement — no money ever moves between accounts.
  • Voids must happen before the daily settlement batch closes, typically within 24 hours.
  • Voiding costs nothing in interchange or processing fees; refunds do.
  • Cardholders see the hold disappear in 1–5 business days depending on their issuing bank.
  • Developers should trigger voids via the capture endpoint — not a separate refund call — to avoid double charges.

How Void Transaction Works

A void transaction intercepts a payment in the brief window between authorization and settlement. Understanding each step helps merchants and developers know exactly when to trigger a void and what happens on the card network side.

01

Customer Initiates Payment

The cardholder submits payment details. The merchant's payment processor sends an authorization request to the card network, which forwards it to the issuing bank. The bank approves the request and places a hold on the cardholder's funds for the authorized amount.

02

Authorization Hold Is Placed

The issuing bank reserves funds but does not transfer them. The merchant receives an authorization code confirming the hold. At this point the transaction is in a pending state — it has not settled and no interchange fees have been assessed.

03

Merchant Triggers the Void

Before the settlement batch closes, the merchant or their system sends a void request to the processor referencing the original authorization code. This must happen before the daily batch cutoff — typically within 24 hours, though some processors allow up to 72 hours.

04

Processor Cancels the Authorization

The processor sends a reversal message to the card network and issuing bank. The authorization is marked cancelled. No capture is queued, so no funds move through the settlement network.

05

Hold Is Released

The issuing bank releases the reserved funds back to the cardholder's available balance. Depending on the bank, this can appear immediately or take 1–5 business days. The transaction never appears as a posted charge on the cardholder's statement.

Why Void Transaction Matters

Voiding is one of the most cost-effective tools available to merchants, yet it is frequently underused in favor of the more familiar refund workflow. The financial and operational implications are significant at any transaction volume.

Processing a refund after settlement costs money on both sides of the transaction. Interchange fees paid on the original charge are typically non-recoverable, and the refund itself may carry its own processing fee. For high-volume merchants, Visa and Mastercard data show that refund processing costs average $15–$25 per transaction when accounting for interchange, processor fees, and operational handling — a cost that a void entirely eliminates.

Beyond direct fees, settled refunds take 5–10 business days to reach the cardholder, creating customer service overhead and dissatisfaction. A void, by contrast, releases the hold in 1–5 business days without any money moving. For subscription businesses, SaaS platforms, and e-commerce merchants with frequent order changes or cancellations, shifting even 20% of refund volume to voids can produce measurable margin improvement. Industry estimates suggest that failed or unnecessary authorizations that are not proactively voided tie up an estimated $30 billion in cardholder funds globally at any given time — creating friction that increases cart abandonment and reduces lifetime value.

Settlement Window Timing

Most major processors — including Stripe, Adyen, and Braintree — run settlement batches between midnight and 6 AM in the merchant's local time zone. Transactions authorized late in the day have the narrowest void window. Configure your order management system to flag cancellations for immediate void rather than queuing them.

Void Transaction vs. Refund

Choosing between a void and a refund is primarily a timing decision, but the operational and cost differences are substantial.

AttributeVoid TransactionRefund
When it appliesBefore settlement (pre-capture)After settlement (post-capture)
Money movementNone — hold releasedFunds transferred back to cardholder
Processing costFreeInterchange + processor fee
Time to resolve1–5 business days5–10 business days
Appears on statementNo (pending hold removed)Yes (credit posted)
Interchange recoveryN/A — never assessedNot recoverable in most cases
Partial amount supportProcessor-dependentUniversally supported
Chargeback riskNoneLow but non-zero

When an order is cancelled before shipment or a booking is cancelled before check-in, a void should always be the default action if the settlement window is still open. A reversal is the network-level message that implements the void — the terms are often used interchangeably, though "reversal" is the technical card-scheme term.

Types of Void Transaction

Not all voids are identical. The specific type depends on the stage of the transaction lifecycle and the processor's capabilities.

Full Void — The most common type. The entire authorized amount is cancelled before capture. The authorization code is invalidated and the full hold is released. No further action is needed.

Partial Void — Supported by select processors and card networks. The merchant reduces the authorized amount before capture — for example, voiding $20 of a $100 authorization when one item is unavailable. The remaining $80 proceeds to settlement. Requires explicit processor support and is not universally available.

Pre-Auth Void — Common in hospitality and car rental. A large estimated authorization is placed at check-in or rental pickup, then voided and replaced with the actual final amount at checkout. This prevents overcharging while protecting against insufficient funds.

Batch Void — Some processors allow merchants to void multiple transactions in a single batch API call before cutoff. Useful for platforms or marketplaces processing high transaction volumes with frequent order changes.

Best Practices

For Merchants

Establish a clear cancellation policy that maps to your processor's void window. Train customer service staff to initiate voids immediately upon cancellation rather than waiting for a scheduled review. For e-commerce, automate void triggers from your order management system the moment an order status changes to "cancelled" — delays increase the risk of missing the settlement window.

Monitor your settlement batch timing closely, especially around weekends and holidays when batch schedules may shift. Keep a log of voided transactions separate from refunds in your reporting so you can accurately measure the cost savings. For recurring billing or subscription models, voiding failed or duplicate charges before settlement prevents cardholder disputes and reduces chargeback risk.

For Developers

Always reference the original authorization ID — not a transaction amount — when submitting a void request. Using the wrong endpoint (e.g., calling a refund API on an unsettled transaction) can result in a double charge: the original settles and an additional credit is issued. Implement idempotency keys on all void requests to prevent duplicate voids from retry logic.

For partial-refund scenarios, check processor documentation for partial void support before assuming it's available. Build fallback logic: if the void window has closed (detectable via the transaction status API), automatically route to the refund flow. Log void attempts with timestamps and response codes for audit purposes and dispute resolution.

Common Mistakes

Waiting too long to act. The most common error is treating a void like a refund — something to process in the next billing cycle or support queue. Once the settlement batch closes, the void opportunity is gone. Merchants lose the cost savings and cardholders wait longer for fund release.

Calling the refund API on unsettled transactions. Some payment processors will accept a refund call on a pending transaction and process both the capture and the refund, resulting in funds moving out and back unnecessarily — and costing interchange fees twice. Always check transaction status before choosing the void vs. refund path.

Not voiding unused pre-authorizations. Hotels, gas stations, and car rentals frequently place pre-auth holds and forget to void excess amounts after final settlement. This ties up cardholder funds unnecessarily and generates avoidable support contacts.

Assuming all processors handle partial voids the same way. Some processors silently ignore partial void requests and void the full amount instead. Test partial void behavior in your sandbox environment and validate the response payload before relying on it in production.

Missing voids in high-volume batch environments. Marketplaces and platforms processing thousands of daily transactions often miss individual cancellations in the queue. Implement monitoring that alerts on any cancellation event that did not produce a successful void API response within 30 minutes.

Void Transaction and Tagada

Tagada's payment orchestration layer sits between your platform and multiple downstream processors, making void management significantly more reliable and consistent.

Automated Void Routing with Tagada

Tagada normalizes void and reversal APIs across all connected processors, so your integration uses a single endpoint regardless of which acquirer processed the original authorization. When an order is cancelled, Tagada checks real-time settlement status and automatically routes to void (if pre-settlement) or refund (if post-settlement) — eliminating the manual logic your team would otherwise maintain per processor. This ensures you capture void savings whenever the window is open, without additional engineering overhead.

For platforms managing multiple merchant accounts or payment methods, Tagada's transaction lifecycle tracking provides a unified audit trail of all void attempts, outcomes, and fallback refund flows — critical for reconciliation and dispute management.

Frequently Asked Questions

What is a void transaction?

A void transaction cancels a payment authorization before it is captured and settled by the card network. When a customer makes a purchase, the merchant's payment processor places a hold on the cardholder's funds. If the merchant voids that authorization before the settlement batch runs — usually within 24 hours — the hold is released and no money changes hands. The cardholder never sees an actual charge, only a temporary hold that disappears.

What is the difference between a void and a refund?

The key difference is timing and money movement. A void happens before settlement, so funds are never transferred — the authorization hold is simply cancelled at zero cost. A refund happens after settlement, meaning the merchant received the funds and must send them back through a separate transaction. Refunds typically take 5–10 business days to appear and incur interchange and processing fees, whereas voids are free and resolve within 1–5 business days.

How long do I have to void a transaction?

The window to void a transaction is determined by when the merchant's payment processor runs its daily settlement batch. Most processors close the batch within 24 hours of the original authorization, though some allow up to 72 hours. Once the batch settles, the authorization becomes a captured charge and a void is no longer possible — the merchant must issue a refund instead. Always check your processor's cutoff time and configure automated alerts if settlement windows are tight.

Does voiding a transaction affect the customer's credit limit?

Yes, temporarily. Even though a void cancels the charge, the issuing bank may take 1–5 business days to release the hold and restore the cardholder's available credit or bank balance. This is a bank-side process outside the merchant's control. Some issuers process releases faster for debit cards. Merchants can reduce customer friction by proactively communicating expected hold-release timelines at the point of cancellation.

Can I void a partial amount of a transaction?

It depends on the payment processor. Some processors support partial voids, allowing merchants to reduce an authorized amount before capture — for example, if a line item is out of stock. Others require voiding the full authorization and re-running a new, lower-amount authorization. Partial void support is especially important for hospitality and e-commerce merchants who frequently adjust order totals before shipment. Always confirm partial void capability during processor evaluation.

Are void transactions visible on a customer's bank statement?

Generally, no. A void removes the pending authorization, so it typically never appears as a completed transaction on the customer's statement. However, many banks show pending transactions in mobile apps, so the customer may briefly see the hold before it disappears. If a customer contacts support worried about a charge that was voided, advising them to check pending — not posted — transactions usually resolves the confusion quickly.

Tagada Platform

Void Transaction — built into Tagada

See how Tagada handles void transaction as part of its unified commerce infrastructure. One platform for payments, checkout, and growth.