Questions tagged [paypal-webhooks]

PayPal webhooks allows merchant systems to get notified of events, using the HTTP webhook callbacks of the PayPal API.

What is it?

PayPal webhooks allows merchant systems to get notified of events, using the HTTP webhook callbacks of the PayPal API.

How it works?

  • The merchant implements and operates a webhook listener service
  • The listener subscribes to events
  • The listener is notified via HTTP POST messages of the events that occur and may react accordingly.

See also

114 questions
0
votes
1 answer

PayPal Webhook never return VERIFIED

I am unable to get paypal to verify the webhook request through the webhooks simulator. The only difference between my VerifyTask and the example is that I converted from webclient to HttpClient. This code is as close to the example ipn listener…
Robotuner
  • 201
  • 1
  • 9
0
votes
0 answers

Mark as a paid an invoice with PayPal api v2

I try to manage a subsbription to several service purchase with PayPal First step: Crate a Checkout Order with a purchase_units each service subscriptio. Second step: In the return url (after the Authorize Payment) I capture the payment for the…
Ephraim
  • 260
  • 1
  • 6
  • 15
0
votes
1 answer

Paypal Webhook Events always on Pending even if response 200

I have configured a Paypal webhook that catches some events some of which are Payment.Sale.Completed, Billing.Subscription.Cancelled and so on, the following happens: I Create a subscription The subscription is paid sucessfully The webhook sends…
gg0000
  • 33
  • 4
0
votes
1 answer

Problem with subscription payments notifications

There are subscriptions created in Paypal, several years ago, which are paid monthly. I configured a webhook (PAYMENT.SALE.COMPLETED) to receive notifications of these payments, and so far I have not received any notification, although payments have…
Rui Silva
  • 3
  • 1
0
votes
0 answers

Django: Paypal webhook event on re-subscription

I have implemented a Paypal webhook in Django. I have difficulty keeping track of resubscription on Paypal. I am trying to use the "PAYMENT.SALE.COMPLETED" event and I have seen other questions which suggest using the same event but the next billing…
0
votes
1 answer

PayPal later payment behavior and next_billing_date value

I am working on a PayPal Subscription integration. Please consider the following scenario: Suppose, I have subscribed to a service with successful a payment. My next_billing_date was on the 1st of February 2023, 10 AM GMT. The payment has failed for…
0
votes
1 answer

Which webhook event will call if subscription payment failed for paypal

I'm integrating PayPal payment gateway into my application. I'm using the PayPal REST API's. I'm able to authorize the request and webhook. Also, API and webhooks are working fine for me. The only thing about I'm little confused that which event and…
Umer Waheed
  • 4,044
  • 7
  • 41
  • 62
0
votes
1 answer

In the PayPal API, how exactly to work with Webhooks for PAYMENT.CAPTURE.COMPLETED & CHECKOUT.ORDER.APPROVED?

I am not sure I understand the difference? The way I understand it so far is that CHECKOUT.ORDER.APPROVED comes first and once the payment has been processed properly, it moves onto PAYMENT.CAPTURE.COMPLETED (based on this answer and this). So there…
0
votes
1 answer

Get type of payment for paypal-checkout

I implemented Paypal-Checkout which works fine so far. My problem is that I don't know which type of payment was used: Was it a "pay now"-option or a "pay later"-option? I know that for me as a dealer it doesn't matter, but the customers are…
Werner
  • 1,695
  • 3
  • 21
  • 42
0
votes
1 answer

Paypal Webhook Event for card expiracy in a subscription

I would be pleased to know what is the webhook event fired by Paypal when, during a subscription, a payment fails (not at the subscription creation but at its renewal). Thank you.
lsmpascal
  • 762
  • 8
  • 24
0
votes
1 answer

How to receive webhooks from paypal donations? (and a few other misunderstandings)

Good day, everyone. I'm a bit stumped on this subject. I have a bit of experience with PayPal developer apps when it comes to subscriptions but this issue with donations is stumping me. I would like to receive webhooks when a donation is made. I…
0
votes
1 answer

Paypal subscription cancellation then renewal scenario

Trying to work with Paypal subscriptions using Smart Subscription buttons and webhooks. I'm basing my business logic on the webhook event PAYMENT.SALE.COMPLETED, as per previous advice I've been given. I'm hoping I've captured all likely scenarios…
Andrew Johns
  • 705
  • 1
  • 6
  • 26
0
votes
1 answer

paypal subscription button and storing to db flow

I'm attempting a Paypal subscription flow in Node, bug all of the various SDKs seem to be deprecated now, and I'm struggling to find a current example of implementing a subscription button and then validating the subscription and updating the user's…
Andrew Johns
  • 705
  • 1
  • 6
  • 26
0
votes
1 answer

After the trial period which PayPal webhook event is fired?

I have implemented Paypal subscription with a seven-day free trial, then the payment is captured if the user did not cancel his subscription. which webhook event is fired in the normal case (payment done after trial period)?
chouaib
  • 3
  • 2
0
votes
1 answer

Why the data of paypal webhook notify, event_type and resource.status do not match

I simplified the data structure received from paypal callback, why event_type is PAYMENT.CAPTURE.COMPLETED but resource.status is PENDING { "id": "xxxx", "event_version": "1.0", "create_time": "2022-05-30T06:17:22.994Z", "resource_type":…
wanlerong
  • 1
  • 1