Use this file to discover all available pages before exploring further.
Qwikcilver is a gift card platform that enables buyers to pay at checkout using one or more
gift cards. Gift cards can be used alone or split across a traditional payment method.For a full overview of how gift cards work in Gr4vy, see the
Gift cards guide.
Once set up, the Qwikcilver team provides
the following information.
The Username for the instance
The Password for the instance
The Terminal ID for the integration
And finally the Subdomain of the instance. This is prefixed to the
Qwikcilver domain name of the instance, for example https://{subdomain}.qwikcilver.com
These credentials can be configured in the dashboard directly when setting up a Qwikcilver
connection, or the details can be securely shared with the solution engineering team
for them to set up.
Before processing a payment, you can check the balance of one or more gift cards.
You can query by stored gift card ID or by raw card number and PIN.
var res = await sdk.GiftCards.Balances.ListAsync(giftCardBalanceRequest: new GiftCardBalanceRequest() { Items = new List<Item>() { Item.CreateGiftCardRequest( new GiftCardRequest() { Number = "4123455541234561234", Pin = "1234", } ), },});// handle response
You can store a gift card in the vault to use it in future transactions without
re-entering the card details. Optionally, associate the card with a buyer.
var res = await sdk.GiftCards.CreateAsync(giftCardCreate: new GiftCardCreate() { Number = "4123455541234561234", Pin = "1234",});// handle response
In the case of multiple gift cards for a transaction, all gift cards are processed
using the Qwikcilver batch API. This means that all gift cards are attempted in parallel,
at the same time.If any of them fail due to insufficient funds, or any other reason,
then none of the gift cards are charged, but because of the parallel nature of Qwikcilver,
each card is marked as failed, even when some of them were never attempted.For a full description of the reversal logic across all gift card providers, see
Reversals in the gift cards guide.