Reputation: 554
I need to integrate PayUMoney for my freelancer job portal, which is developed in PHP Codeigniter.
There are 3 types of user :
1) Employer (Job provider)
2) Freelancer (Person who's doing the job)
3) Broker (the portal takes commission for the transaction)
Currently the employer transfers fund to broker then broker transfers to freelancer. I need to transfer amounts from employer to freelancer directly by transferring the commission to the broker ? With this transaction the broker can get the commission and he doesn't need to track the balances and transfer to freelancer .
Upvotes: 3
Views: 979
Reputation: 1296
In order to set up Payu Gateway with your codeigniter application you need to follow the following steps :
Some issues that might occur while submitting form will be regarding the product info field, make sure that the value field in the product info sums up to the total amount of transaction. P.S. The product info is in the form of JSON.
NOTE : For breaking the amount you can modify the productInfo(required) parameter into which is in the form of JSON data providing the name and value key-value pairs. Also make sure that the sum of the value keys is equal to the total amount of transaction.
Upvotes: 1