phpdeveloper
phpdeveloper

Reputation: 1

how can i automatically send payments through paypal using php

I have a database having money information, I need to send to co-workers and that amount automatically goes when the workers click "request money" button. Can this be done? Will paypal allow me to do that?

I tried to make use of paypal adaptive payment,but it requires that invoke paypal login and authorize here then send money.

I need this process automatically. Can anyone help me? Thanks

Upvotes: 0

Views: 967

Answers (1)

daniol
daniol

Reputation: 113

Use Paypal mass payments.

Build a list with the pending payments (TSV format) using PHP and submit through Paypal site or using API,

More info: https://www.paypal.com/cgi-bin/webscr?cmd=_batch-payment-overview-outside#tab1 https://developer.paypal.com/docs/classic/mass-pay/integration-guide/MassPayOverview/

Upvotes: 1

Related Questions