Paypal webhooks
I've successfully set up paypal subscriptions inside a nextJS app
whenever i subscribe using the paypal buttons, it works just fine, but the only event that's fired is
BILLING.SUBSCRIPTION.ACTIVATED
if i have my subscriptions be billed monthly, should i wait one month for the PAYMENT.SALE.COMPLETED
event?
i was expecting both BILLING.SUBSCRIPTION.ACTIVATED
and PAYMENT.SALE.COMPLETED
would fire when a user first subscribes, then PAYMENT.SALE.COMPLETED
for the next payments
Is it normal behavior for that only BILLING.SUBSCRIPTION.ACTIVATED
is fired at first, and (maybe) only subsequent payments are PAYMENT.SALE.COMPLETED
?
or have i misconfigured my subscriptions or something? (though afaik, i did just a simple subscription)1 Reply
did a couple more checks, turned on all events for the webhook from inside my dashboard
and apparently i was receiving PAYMENT.SALE.PENDING events, which is really strange but i'm pretty sure that the payments worked and i tried logging into my buyer sandbox account and indeed money was transferred
this is really weird