Skip to main content

Capture

Capture represents the merchant's formal confirmation that purchased goods have been shipped, services have been rendered, or digital access has been granted. By submitting a capture request, the merchant converts an active authorization hold into an enforceable financial claim, queuing the transaction for interbank clearing.

Importantly, capture does not move currency immediately. It is the final transactional stage under direct merchant control; once captured, the transaction transitions into automated interbank clearing cycles governed by card scheme timetables.

The clearing pipeline

When an application submits a capture API call, the processor aggregates the transaction into an open batch rather than transmitting it directly to the card network switch. Individual captures accumulate throughout the trading day until the processor executes a batch close at a predetermined cut-off time.

Only after the batch closes does the processor format and dispatch clearing records to the card networks. The contractual funding schedule (e.g. T+2 settlement) begins at the moment of batch close rather than at the initial customer authorization timestamp.

The batch close and daily cut-off windows

Each payment processor defines daily cut-off times, typically aligned with its central operational time zone or regional clearinghouse cycles. Any transaction captured prior to the cut-off enters the current clearing cycle; transactions captured even moments later roll over into the following day's batch.

This mechanism explains a common merchant reconciliation discrepancy: two customer orders placed twenty minutes apart on the same evening may fund across separate banking days simply because one order cleared the cut-off while the other slipped into the subsequent cycle.

While modern cloud payment gateways automate batch closure on scheduled intervals, legacy point-of-sale systems often require manual end-of-day terminal settlement. If retail store staff forget to close the terminal batch at the end of a shift, transactions remain stranded in terminal memory, delaying interbank clearing indefinitely.

Daily batch verification

Verify batch reconciliation against capture logs every business day.

  1. Retrieve the automated batch settlement report from the processor dashboard at the close of the trading day.
  2. Cross-reference the aggregate batch settlement sum against internal order management system capture totals.
  3. If capture totals diverge from the batch report, or if a batch report fails to generate, escalate to processor support immediately.

Partial, multi-capture, and over-capture scenarios

Real-world commerce frequently requires capturing amounts that differ from the initial authorization hold:

Commercial scenarioRecommended operational workflow
Order fulfilled below authorized totalExecute a partial capture for the fulfilled amount; issue an authorization reversal for the uncaptured balance
Multi-package split shipmentsSubmit multiple partial captures against the single authorization if supported by processor; otherwise authorize per shipment
Hospitality or restaurant gratuity adjustmentsLeverage the over-capture tolerance permitted under scheme rules for tipping categories; otherwise seek re-authorization
Incidental charges during lodging or car rentalSubmit an incremental authorization prior to checkout, then capture the final aggregated total

A partial capture claims less than the initial authorization total. In split-fulfillment workflows where items ship from different distribution centers on different days, merchants execute partial captures as individual packages dispatch. If a payment processor does not support multiple captures against a single authorization code, the merchant must re-authorize remaining amounts as secondary shipments dispatch.

An over-capture tolerance permits specific merchant categories (such as restaurants, beauty salons, and taxi services) to capture a final amount slightly higher than the initial authorization to accommodate voluntary tips without triggering authorization declines. Outside explicitly approved scheme categories, attempting to capture an amount greater than the authorized hold violates scheme rules and risks automated clearing rejection.

Operational penalties of delayed capture

Delaying capture beyond scheme authorization windows represents a pervasive source of operational loss:

  • The transaction risks an interchange downgrade, shifting from prime qualification tiers to standard or penalty tiers that carry substantially higher processing fees.
  • As the authorization hold approaches its expiration deadline, issuing banks release reserved funds back to the cardholder, increasing the probability of clearing rejections.
  • Under updated Visa regulations, late presentment and missing authorization are evaluated under unified dispute conditions. If an issuer rejects a late clearing presentment, the merchant loses both the delivered merchandise and the sales revenue.

Force captures and the zero floor limit fee

A force capture (also called an offline capture or post-authorization entry) forces a clearing record into a batch without an accompanying electronic authorization code. This mechanism exists primarily to settle transactions approved manually via voice authorization during telecommunications outages.

Force captures carry severe operational liabilities:

  • Visa assesses a zero floor limit fee on every settled transaction that cannot be matched back to a valid electronic authorization record.
  • Because no electronic hold validated the card's status or available balance, force captures carry high default decline rates and offer virtually zero defense against subsequent fraud chargebacks.
Force capture operational governance

Restrict force captures strictly to documented exceptional workflows.

  1. Document the specific operational justification within the order audit trail.
  2. Record the voice authorization approval code and representative identifier provided by the issuing bank.
  3. Flag the transaction for mandatory review on daily exception reports.

Terms introduced

  • Batch: the day's captured transactions, submitted for clearing together.
  • Cut-off time: the daily deadline for joining the current batch.
  • Partial capture: claiming less than the authorized amount.
  • Over-capture tolerance: the allowance to claim slightly more than was held.
  • Force capture: a capture with no matching authorization.
  • Zero floor limit fee: Visa's per-item charge for a settled transaction with no matching authorization.

How providers do it

While capture represents the same financial step across every provider—turning a temporary authorization hold into an irreversible clearing record for settlement—the underlying API mechanics and operational limits vary considerably.

The architectural design of an order management system often hinges on whether a provider permits multiple partial captures against a single authorization. If an e-commerce platform fulfills orders through split warehouse shipments, using a provider that allows only one capture per authorization forces engineering teams to initiate secondary authorizations for subsequent packages—introducing the risk of mid-fulfillment card declines.

ProviderMultiple partial capturesUncaptured auth expiresStatus
StripeGenerally one capture per PaymentIntent; multiple captures require customized account flags or separate authorizationsBounded by payment method and card brand rulesunconfirmed
AdyenDisabled by default; requires explicit merchant configuration and backend enablementConfigurable per merchant account, subject to scheme windowsconfirmed for the setting
Worldpay ExpressDependent on merchant account configuration and gateway profileDictated by underlying card scheme parametersunconfirmed
Global PaymentsVaries by terminal application and acquiring platform specificationsStandard scheme expiration rules applyunconfirmed
BraintreeSupported on PayPal, Venmo, and card transactions where enabled on the merchant accountConfigurable within card network authorization constraintsconfirmed for availability
Checkout.comFully supported using capture_type: NonFinal until final captureFollows card scheme expiration guidelinesconfirmed
SquareSingle capture per authorization36 hours for in-person POS transactions, 7 days for e-commerceconfirmed

Square's 36-hour in-person authorization window is a notable platform constraint rather than a card scheme limitation. Any operational workflow that places an authorization hold at an in-person register and defers capture until customer pickup must conclude within a day and a half. The tabs below outline the specific API endpoints and parameter payloads required for each provider.

What they are: a PSP. They hold the acquiring relationship, so capture semantics come from them rather than from a bank.

Their model has no separate "batch" a merchant can see. Capture submits the charge, and batching and clearing happen inside Stripe. There is no batch close to miss, which removes a whole class of failure. It removes a lever too.

Their vocabulary

Standard termTheir termStatus
Auth-onlyPaymentIntent with capture_method: manualconfirmed
SalePaymentIntent with capture_method: automaticconfirmed
CaptureCapture the PaymentIntentconfirmed
Partial captureCapture with a lower amount_to_captureconfirmed
Release an uncaptured authCancel the PaymentIntentconfirmed
QuestionAnswerStatus
How long can an auth stay uncaptured?Bounded, and shorter than the scheme maximum for some methodsunconfirmed; check current docs per payment method
Multiple partial captures against one auth?Generally one capture per PaymentIntentunconfirmed
Over-capture allowed?Limited, method-dependentunconfirmed

Last verified: never.