-3

Is there any way I can automatically transfer (Java API) money to vendor account from my paypal account?

Scenario:

  1. Place a job in my application
  2. Vendor accepts and perform job
  3. My app will receive completion status
  4. Release money to vendor

I need to automatically release money to vendor once job is completed. Is there any paypal API?

Maheshkumar
  • 724
  • 1
  • 10
  • 19

1 Answers1

1

There is already a PayPal Java SDK that you should look at. If you have a specific question about achieving one of the four points in your scenario, then you should post a new question (along with the code you've written, error messages, etc, etc)

There's also this question, which may have some some useful answers.

Community
  • 1
  • 1
Catchwa
  • 5,845
  • 4
  • 31
  • 57
  • Thanks @Catchwa. I am already using this SDK for receiving money from customer. I couldn't find any samples for paying to vendor. – Maheshkumar Apr 05 '17 at 03:19
  • @Maheshkumar - added a link to a question that may help – Catchwa Apr 05 '17 at 03:54
  • thanks. Delayed Chained Payments in Adaptive Payments fits to my requirements. https://developer.paypal.com/docs/classic/adaptive-payments/ht_ap-delayedChainedPayment-curl-etc/ – Maheshkumar Apr 07 '17 at 09:45