Request Schema
The Webhook implementation needs to support the following scheme
type WebhookRequest = {
reason:
| "SubscriptionCreated"
| "SubscriptionCancelled"
| "SubscriptionEnded"
| "Payment"
| "PaymentFailure"
| "DynamicPaymentRequestRejected";
link: string;
version: "v1";
home: "https://debitllama.com";
};reason
link
/api/v1/payment_intents/[slug]version and home
Example Webhook code
Last updated