Skip to main content
1

Configure payment notifications

Choose how you want to be notified when payments are received.Configure a webhook to receive real-time updates on payment status. This is ideal for automated systems and immediate order fulfillment.
  1. Go to your Webhook Configuration page
  2. Add your endpoint URL
  3. Select the events you want to receive
  4. Save your configuration

Option B: Email notifications

Set up email notifications for manual order processing and simple setups.
  1. Visit the Notification Settings page
  2. Enter your email address
  3. Save your settings
2

Get your merchant wallet address

Your merchant wallet address is where all payments will be sent.
  1. Navigate to the Merchant Configuration page in your dashboard and copy your Merchant Wallet Address
Keep your wallet address secure and only share it through your payment button implementation.
3

Add the payment button to your website

Choose your preferred implementation method:
Perfect for Next.js applications.
The usdAmount parameter is optional. If you don’t include it, customers can choose how much they want to pay, making it perfect for donations or flexible pricing.
4

Handle webhook notifications

When a payment is successful, you’ll receive a webhook notification with the transaction details.

Webhook payload schema

string
required
The event type. Currently only "transaction.sent" is supported.
object
required
Container object for the transaction data.

Webhook signature verification

For security, all webhooks include an HMAC signature in the chipi-signature header. You should verify this signature to ensure the webhook is from ChipiPay.
  1. Get your webhook signing secret from your webhook configuration page (it looks like whsec_****)
  2. Create a webhook handler in your Next.js app:
5

Celebrate

Your integration is now ready for production!