We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
invoice.update
Hi team,
For some unknown reason, the invoice.update event isn't getting called in our webhook when a subscription is renewed by Paystack.
Here's the switch case that covered the event. Are we probably doing something wrong? Other events work as expected.
case 'invoice.update': if (data.status === 'success' && data.paid) { await Subscription.findOneAndUpdate( { userId }, { $set: { startDate: data.period_start, endDate: data.period_end, customerCode: data.customer.customer_code, subCode: data.subscription.subscription_code, amount: data.amount, currency: data.currency, }, }, ) } break
The text was updated successfully, but these errors were encountered:
is this related to webhook or react lib?
Sorry, something went wrong.
No branches or pull requests
Hi team,
For some unknown reason, the
invoice.update
event isn't getting called in our webhook when a subscription is renewed by Paystack.Here's the switch case that covered the event. Are we probably doing something wrong? Other events work as expected.
The text was updated successfully, but these errors were encountered: