Files
breez-sdk-docs/snippets/react-native/webhook.ts
2023-12-14 09:46:58 +02:00

14 lines
434 B
TypeScript

import { registerWebhook } from '@breeztech/react-native-breez-sdk'
const webhook = async () => {
// ANCHOR: register-webook
await registerWebhook("https://yourapplication.com")
// ANCHOR_END: register-webook
}
const paymentWebhook = async () => {
// ANCHOR: register-payment-webook
await registerWebhook('https://your-nds-service.com/notify?platform=ios&token=<PUSH_TOKEN>')
// ANCHOR_END: register-payment-webook
}