Webhook Registration
Link to the Customer Dashboard
Registering a webhook is necessary to receive real-time notifications.
Webhook Page

Webhook Form

Provide a meaningful description to enhance understanding of its purpose.
Webhook List

Each entry includes a delete button at the end.
Webhook notifications are sent in two cases:
When a created Lightning invoice is paid.
When a created on-chain invoice is paid.
Lightning Notifications
Paid lightning invoice notification
Notifies users when somebody pays theirs Lightning invoice.
{
"event_type": "EVENT_TYPE_LIGHTNING_INVOICE_IS_PAID",
"lightning_invoice_is_paid": {
"id": "9fb12253ee9664bdd0359816836c142b9bc80db22da335eb2968acb326bdb0f6"
}
}
Created lightning invoice notification
Shown notification type use when somebody generated LN invoice for merchant via LNURL feature.
{
"event_type": "EVENT_TYPE_LIGHTNING_INVOICE_CREATED",
"lightning_invoice_created": {
"id": "9fb12253ee9664bdd0359816836c142b9bc80db22da335eb2968acb326bdb0f6"
"merchant_id" : "test_merchant"
}
}
On-chain Notification
Notifies users when somebody pays theirs Lightning invoice.
{
"event_type": "EVENT_TYPE_BITCOIN_INVOICE_IS_PAID",
"bitcoin_invoice_is_paid": {
"bitcoin_address": "bcrt1ql00jg5zeer08vt5y6humwnk2wy4mcpnq4lw8fh"
}
}
Last updated