amount is the amount of the payment in the minor denomination of the currency
currency to indicate the invoice currency
memo is your order/customer/cart ID, whatever you need to reconcile the payment
(on stripe API it's called `client_reference_id`)
handle="unicorn_socks"// your yodl.me handleamountInMinor=500;// for 5.00invoiceCurrency="USD";// invoice currency, defaults to "USD"memo=order.orderID;queryParameters="amount=${amountInMinor}¤cy=${invoiceCurrency}&memo=${memo}";<ahref="https://yodl.me/${handle}?${queryParameters}"target="_blank"> YODL Pay</a>
β Success Redirect Page
When the checkout is completed and the payment is confirmed, YODL.me redirects the user back to the success redirect page hosted on your webshop. This URL is configured in the YODL.me account admin.
The SDK appends to the URL, as query parameters the chainId and txHash. So you can engage in post-processing of the payment (similar to the webhook). However as we cannot guarantee that the user really returns to your page, you should still implement webhooks for consistent processing.
βοΈ Webhook
The webhook is called by the YODL.me backend when the payment was confirmed on-chain and when the payment is probabilistically final and unlikely to be reverted. The payload is minimal and only contains:
chainId
txHash
state of the blockchain transaction: confirmed or probabilistic
The Webhook needs to query yodl.me/api/tx/:chainId/:txHash to retrieve the payment details: pmt
With the retrieve pmt.memo lookup the order/cart/customer
Verify in your code that the payment was not tampered with.