skip to Main Content

I am trying to setup a website with a backend to capture papal orders and payments using their orders API.

Everything is expected to be controlled using code so is there any way paypal will send a callback when there is a dispute or customer asks for a refund ? i.e. if there are many orders it would be hard to keep track of disputes by reading emails.

2

Answers


  1. Yes, check out the PayPal API documentation. The Disputes API is what you are looking for.

    Login or Signup to reply.
  2. Set up a webhook listener on the REST app for the events you want to listen to (specify * for all). There are events for disputes and refunds; see the list in the PayPal documentation

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search