E-commerce integration
One of the most common integrations with AIQ is for e-commerce service providers or in-house teams looking to build on top of Dutchie plus/ WordPress/ Shopify/ or another popular e-commerce template structure. Native POS redemptions of discounts also leverage the following integration structure.
The goal of this integration is to:
- Prevent staff members or bad actors from stealing customer loyalty points (Remembering a customer's phone number for e-comm discount theft at a later date, stealing cash from the drawer without applying discounts, etc.
- Allow staff a safe way to redeem discounts natively within POS systems
- Create a way for native redemption of discounts tied to AIQ global loyalty programs used by mutual customers
- Make signing up new loyalty members work instantly while also displaying welcome gifts for redemption after pin code verification
- Send us abandoned carts so that we can trigger revenue recapture campaigns
Create an integrations page in your app to let customers input their AIQ auth credentials
(Ignore this if you are an e-commerce vendor and continue below)
- Customer starts a transaction with staff in store
- Staff member clicks on a native button "Redeem discounts for customer"
- You call our endpoint when the button is pressed to verify the customer is there with their phone in hand (ownership). Endpoint = "/verify/wallet" sending the {"phone": "##########" }
- The customer provides the pin code sent to their phone. Staff puts it into a UI popup "Customer pin code: <input field>"
- When the staff member places the pin code into the POS, you then you hit: Endpoint = "/view/wallet" sending the {"phone": "##########", "code": "1234" }
- AIQ will then respond with a wallet object containing all available discounts for this customer as well as PUT url's to call. These PUT URLs should be hit when the staff member clicks a "Redeem this discount" + the customer has completely finished checking out. Do NOT call the PUT URL's until checkout has been completed.
- Please make sure to append the transaction ID to the end of the PUT url for native POS redemptions. DO NOT send it if you are an ecommerce integration.
MSO/ Enterprise support advice:
Many public entities rely on proper reporting of loyalty points values at the transaction level. AIQ clients often require that the "pointsDeduction" in our discount object below be reflected on the transaction within the POS. Eventually passing it down to transactional reports for public entity auditors.
- Customer arrives at e-commerce checkout page
- When a user puts in their phone number or you already have it as a stored customer Endpoint = "/verify/wallet" sending the {"phone": "##########", "email": "[email protected]" }
- AIQ responds with either a success in which case we just sent the user a text with a special code “Your code to unlock rewards is: 1234” or a "No customer exists with phone number error”. Meaning they aren’t signed up for this brands rewards program yet.
STOP: If no customer exists/ they aren’t in the rewards program yet. This is one of the highest revenue-generating setups. We highly recommend allowing customers to signup natively:
- Allow user to create a loyalty account by showing a toggle with the following fine print in the box:
Please require the following consent
“I consent to signup for the {{brand name}} rewards program where I will receive marketing communications. By doing so, I understand that I am allowing {{brand name}} and it's technology provider(s) to retain my personal contact details/ engagement history for use in personalized marketing. Opt out at any time by replying "STOP" to messages. Standard message and calling rates may apply.”
Replace "Rewards program" with "club program" for Canadian retailers/ stores.
2.) Once created, you can either decide to run them through the verification process, or you can now directly retrieve their wallet and skip 2FA since this is a new user using: Endpoint = "/wallet" sending the {"phone": "##########", "email": "[email protected]" }
If customer exists after either route:
- Wait for customer to receive 4 digit verification code. Allow customer to resend the verification code (in which you hit the same endpoint “Send Wallet Verification Request” again to refresh their code)
- Once code is inputted, hit "Retrieve wallet with verification code" with phone and code, and a wallet will be returned
Use this endpoint during the cart-building phase to verify ownership of discounts before redeeming
Loading...
Loading...
Get a wallet object with all discounts for a customer so that they or the staff member can redeem/ apply to cart.
Loading...
Loading...
Use this when a user wishes to optin to loyalty as a new customer
Loading...
Loading...
One of the most popular marketing campaigns is to use abandoned cart data to recapture lost revenue. As an e-commerce provider, you simply send us each abandoned cart and we take care of automating the rest. AIQ will set sleep timers between orders so that individuals don't get too many messages to come back to buy, we will traverse these cart items across our network of consumer facing pages/ widgets/ sponsored listings, and leverage email, sms, and push notifications to recapture their attention.
Loading...
Loading...