Integration Guide
How to integrate a payment with YODL.me into a webshop
Development Tasks
🔗 Payment Button
On the checkout page you create a payment button/link to:
https://yodl.me/$handle?amount=..¤cy=..&memo=..
$handleis your YODL.me linkamountis the amount of the payment in the minor denomination of the currencycurrencyto indicate the invoice currencymemois 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 handle
amountInMinor = 500; // for 5.00
invoiceCurrency = "USD"; // invoice currency, defaults to "USD"
memo = order.orderID;
queryParameters = "amount=${amountInMinor}¤cy=${invoiceCurrency}&memo=${memo}";
<a href="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:
chainIdtxHashstateof the blockchain transaction:confirmedorprobabilistic
The Webhook needs to query
yodl.me/api/tx/:chainId/:txHashto retrieve the payment details:pmtWith the retrieve
pmt.memolookup the order/cart/customerVerify in your code that the payment was not tampered with.
Mark payment as complete and do your post processing
💾 Environment Variables
YODL_HANDLE= # yodl.me/YOUR_HANDLE
YODL_API_KEY= # find in your yodl.me adminFlow and Sequence Diagram
Last updated