Partial Authorization
Definition
A partial authorization is an issuer approval for less than the requested transaction amount — common on prepaid cards and requiring split tender or decline handling.
A partial authorization occurs when a card issuer approves a transaction for less than the requested amount — typically when the cardholder's available balance or credit limit is insufficient to cover the full amount. Partial authorizations are most common on prepaid cards and debit cards with strict balance limits. Merchants must either accept the partial amount and request a second payment method for the remainder (a split tender transaction), or decline the partial authorization and prompt the cardholder for a different payment method. Partial authorization support is required for most debit and prepaid card programmes.
Partial authorizations are a specific issuer behaviour that many e-commerce integrations do not handle correctly — resulting in either declined transactions that could have partially succeeded, or authorization holds that capture more than the available balance.
When Partial Authorizations Occur
Partial authorizations are primarily triggered by:
Prepaid card balance limitations: A consumer with a $47 prepaid card attempting a $65 purchase receives a partial authorization for $47. Without explicit partial auth support, the merchant’s system sees a mismatched amount and declines or voids the transaction — leaving the consumer unable to complete the purchase.
Debit card daily limits: Some debit issuers impose daily transaction limits. If the full amount exceeds the remaining daily limit, a partial authorization returns the available amount.
Insufficient credit: Less common on credit cards (issuers more often soft-decline entirely) but can occur at the margins of a cardholder’s available credit.
Partial Auth Response
In the ISO 8583 authorization response, a partial authorization is indicated by:
- Response code
10(Partial Approval) rather than00(Approved) - The approved amount field containing a value less than the requested amount
- The merchant must compare the authorized amount against the requested amount to detect the partial approval
Not all PSPs surface the partial authorization to merchants — some suppress the response and return a decline. Merchants building custom payment integrations need to explicitly handle response code 10.
Split Tender
When a partial authorization is received, merchants can present a split tender flow:
- Capture the partial authorization for the approved amount
- Prompt the customer for a second payment method (another card, cash) for the remainder
- Complete the transaction across two payment instruments
Split tender handling is standard at physical point of sale (POS systems have built-in split tender workflows) but rare in e-commerce — most online checkouts do not prompt for a second payment method, meaning partial auth scenarios typically result in transaction abandonment.
Scheme Requirements
Visa and Mastercard require merchants that accept debit and prepaid cards to support partial authorization acceptance. The practical compliance requirement:
- Merchants must not void a partial authorization simply because the approved amount is less than the requested amount
- Merchants must either complete the partial capture or explicitly reverse the authorization if the customer declines to pay the remainder
Merchants that automatically void partial authorizations are non-compliant with scheme rules and are also causing unnecessary transaction failures on prepaid card portfolios — a segment that is significant in markets where prepaid cards are used for salary disbursement (common in Southeast Asia and Latin America).
Authorization Rate Impact
For merchants with significant prepaid card volume, partial authorization support can measurably improve effective authorization rates. A merchant ignoring partial auth responses is converting potentially successful split tender transactions into declines — reducing conversion and creating negative cardholder experience.
The fix is straightforward in most PSP integrations: enable partial authorization acceptance in the payment request parameters and add split tender handling in the checkout UI for the remainder amount.
Related terms
Authorization
Authorization is the real-time process by which a card payment is approved or de...
Authorization Rate
Authorization rate is the percentage of payment authorization requests that are ...
Issuer
An issuer (or issuing bank) is the financial institution that provides payment c...
Pre-Authorization
A pre-authorization (pre-auth) is a temporary hold placed on a cardholder's fund...