Split tender
Wpay supports split tender transactions across one primary payment method and one or more gift cards. The maximum number of gift cards that can be redeemed in a split tender is 10. The primary payment method can be a scheme card (including digital wallets for scheme cards, such as Apple Pay and Google Pay) or an alternative payment method such as PayPal, Afterpay, or Zip.
Overview of split tender
To process a split tender, call the Transaction API with a combination of a primary payment method and gift cards. Key considerations:
- A transaction must include at least one primary payment method or one gift card. You may process a gift card only transaction or a split tender transaction between a primary payment method and gift cards.
- Gift cards are treated separately from the primary payment method in the API requests and responses.
- The
gift_card_redemptions
array in the response contains details of all gift card redemptions. - The
amount
field represents the total transaction amount (primary payment method + gift cards). - The primary payment method is always processed first, followed by gift cards.
- Gift card redemptions are always processed as direct capture.
- Split tender transactions are atomic :
- If the primary payment method fails, no gift card redemption occurs.
- If any gift card redemption fails, the transaction is reversed:
- The primary payment method is voided.
- Successfully redeemed gift cards are refunded.
- Unredeemed gift cards are skipped.
Storing gift cards in a buyer’s wallet
You can store gift cards in a buyer’s wallet using the Store Gift Card API. This is the only API that can be used to securely vault a single gift card and validates it against the active gift card service.
Calling a Transaction API with store = true
only saves the buyer’s primary payment method, but not gift cards.
Key considerations:
- Only unique, active (non-expired) gift cards can be stored for a buyer.
- The API will return a
gift card id
that can be used in gift card only or split tender transactions. - By default, buyers can store up to 10 gift cards.
- To remove expired or empty gift cards, call the GET /buyers/gift-cards. This automatically archives inactive cards, freeing up space for new ones.
Store gift card API request
Store gift card API response
Gift card only transaction
To process a payment using only gift cards, set payment_method
to null
and include gift card details under the gift-cards
array.
Request Example
Add new or saved gift cards information in the gift-cards
array.
Response Highlights
- intent_outcome` reflects the overall transaction result.
status
represents the state of the primary payment method. In gift card only transactions, this does not really matter as there is no primary payment method involved (primary payment method isnull
).amount
represents the total amount charged.authorized_amount
is0
since there is no primary payment method being charged.- The
gift_card_redemptions
array contains the redemption details including thegift_card_redemptions.status
,gift_card_redemptions.error_code
, andgift_card_redemptions.refunded_amount
. - If multiple gift cards are used,
multi_tender
istrue
. - If there is only one gift card,
multi_tender
isfalse
Split Tender Transaction (Scheme Card + Gift Cards)
To process a split tender transaction with a scheme card and gift cards, specify the scheme card under payment-methods
object and include gift cards in the gift-cards
array. You may either include new gift cards (with gift card number and pin) or stored gift cards (with gift card id).
To store gift cards, use the Store gift card API. This API returns the gift-card id
that can be used in a split tender transaction. Calling a Transaction API with store = true
only saves the buyer’s primary payment method, but not gift cards.
Request Example (Stored Gift Cards)
Response Highlights
intent_outcome
represents the overall success/failure of the transaction.amount
represents the total amount charged including the scheme card and all gift cards.- The
gift_card_redemptions
array contains gift card processing results. - All of the fields outside of the
gift_card_redemptions
array are related to the primary payment method only. multi_tender
is always set totrue
.
Split Tender Transaction (Alternative Payment Method + Gift Cards)
You can process a split tender using an alternative payment method (such as PayPal, Afterpay, and Zip Pay) via direct API integrations:
- When calling the Transaction API, include gift card details in the
gift-cards
array. - Handle the redirect flow to complete the transaction.
- Call GET Transaction API to get the latest status of the transaction.
For a step-by-step integration guide, refer to the Direct API guide.
Handling Split Tender Failures
In principle, the primary payment method is processed first before gift cards to prevent complications. There are scenarios where we will fail or decline such as insufficient funds or the transaction after a certain time period has lapsed (e.g. buyer authentication/approval abandonment). Here, charging gift cards first would mean that the gift card amount will not be refunded until the transaction is canceled at a later time.
Scenario 1: Failed Gift Card
If a gift card redemption fails while the primary payment method succeeds, the transaction is reversed:
intent_outcome
=failed
.- The primary payment method is voided (
status
:authorization_voided
) - Successful gift card redemptions are refunded.
- Failed gift cards display
status = failed
with anerror_code
.
Scenario 2: Failed Primary Payment Method
If the primary payment method fails or is declined::
intent_outcome
=failed
.- The
status
of the primary payment method would either beauthorization_failed
orauthorization_declined
. - Gift card redemptions are not performed (
status = skipped
).
Split Tender and Anti-Fraud Manual Review
In scenarios where the anti-fraud engine returns a review decision in a split tender transaction:
- The primary payment method is authorized but placed on hold for manual review.
- The gift cards are charged successfully.
- If the manual review later results in a rejection, the transaction outcome will be:
intent_outcome
:failed
- The primary payment method’s
status
:authorization_voided
- Gift cards will be refunded.
Refunding back to gift cards
Important: You should not refund back to gift cards for the following reasons:
- The buyer may no longer be available to be notified of the refund, or
- The buyer may not have the original gift card with them at the time of the refund.
Instead, the recommendation is to issue a new gift card or store credit to compensate the buyer.
Post-auth operations
Void and Capture APIs only apply to primary payment methods and do not affect gift card redemptions.
Was this page helpful?