Payment Authorization
Also known as: Card Authorization, Auth, Pre-Auth
Payment authorization is the issuer's approval to hold funds on a customer's card or account before the charge is actually captured and settled.
Definition
Payment authorization is the first half of a card transaction: your billing system asks the customer's bank to verify the account is valid and place a hold on the funds, but no money moves yet. The hold typically lasts 5-7 days and confirms the card can cover the charge.
In practice, your checkout or billing engine sends an auth request to the processor, which routes it to the card network and issuer. The issuer returns an approval code (or a decline reason), and your system either proceeds to capture the funds immediately or holds the auth until fulfillment, renewal, or a confirmation event triggers the capture.
Authorization is distinct from capture (the actual debit), settlement (funds landing in your merchant account), and pre-authorization (a verification hold without intent to capture, like at a hotel check-in). All four happen in sequence but are controlled separately by your billing logic.
Why It Matters
Auth-and-capture is the foundation of any billing flow where you charge after a delay — subscriptions, usage-based pricing, shipped goods, or service delivery. Doing it correctly cuts fraud losses, reduces chargebacks, and lets your finance team forecast cash with accuracy because you know which holds will convert to revenue.
Teams that skip clean auth logic end up double-charging customers, capturing on expired holds (which forces a re-auth and often a decline), or burning trust with surprise charges on cards the customer thought were just being verified. Worse, sloppy auth handling triggers issuer risk flags that lower your approval rates across the entire portfolio.
Examples in Practice
A SaaS company running annual contracts authorizes a customer's card at signup, captures on contract start date, and re-authorizes 30 days before renewal to confirm the card is still valid. If the pre-renewal auth fails, the success team gets a flag to update payment method before the actual renewal charge hits.
A mid-market ecommerce brand authorizes orders at checkout but only captures when the warehouse confirms shipment. This protects the customer from being charged for out-of-stock items and gives the brand a clean cancellation path without issuing refunds.
A managed-services agency authorizes a deposit on a new client's card when the proposal is countersigned, then captures it 24 hours later once the engagement letter is on file. The brief delay lets the client back out cleanly without a refund cycle if anything goes sideways during onboarding.