Hi,
I have just had a customer purchase a subscription through the web interface with PayPal, he have payed and his subscription is active but I have these findings:
- Is it true there is no invoice generated?
- Is it true there is nu subscription cycle created?
- I dont see any webhook calls in the webhook history?
thanks in advance.
I have just had a customer purchase a subscription through the web interface with PayPal, he have payed and his subscription is active but I have these findings:
- Is it true there is no invoice generated?
- Is it true there is nu subscription cycle created?
- I dont see any webhook calls in the webhook history?
thanks in advance.
1 Answers
Hello Stefan,
PayPal invoice is generated on webhooks incoming call when payment is made, below are the events handled
'events' => [You need to set up the webhook call at Paypal https://www.laraship.com/docs/laraship/payment-modules/paypal-configuration/
'PAYMENT.SALE.PENDING' => \Corals\Modules\Payment\PayPal\Job\HandleInvoiceCreated::class,
'PAYMENT.SALE.COMPLETED' => \Corals\Modules\Payment\PayPal\Job\HandleInvoicePaymentSucceeded::class,
'PAYMENT.SALE.DENIED' => \Corals\Modules\Payment\PayPal\Job\HandleInvoicePaymentFailed::class,
'BILLING.SUBSCRIPTION.CANCELLED' => \Corals\Modules\Payment\PayPal\Job\HandleCustomerSubscriptionDeleted::class,
],
Please login or Register to submit your answer