payment_method.detail.card.capture set to false. Funds are held on the cardholder’s account and released to you only when you Capture the transaction. If you don’t capture before the authorization expires, or you call Cancel, the hold is released back to the cardholder.
When to use authorize-only
- You need to verify funds and customer eligibility before shipping, fulfilling, or producing a digital good.
- Final amount is not known at checkout (hotels, car rentals, marketplaces, delivery with tip).
- You want to split capture across multiple shipments from a single authorization.
The request
Send a normal Create Payment request withpayment_method.detail.card.capture: false:
The response
On success, Yuno returns the full Payment object withstatus: PENDING and sub_status: AUTHORIZED, and a transaction of type: AUTHORIZE. The card is not charged at this point. Funds are held.
Next steps
Capture
Settle the authorization. Supports partial capture up to the authorized amount.
Cancel
Release the hold before capture.
Authorization windows are issuer- and scheme-dependent, typically 7 days for most card brands. Uncaptured authorizations expire automatically. Plan capture/cancel calls well inside that window.