Can you please help me regarding citrus pay payment gateway to split the payment using PHP?
I have to split the order amount into 2 parts one for the merchant and one for the seller. If it's possible please provide me a demo.
Thanks in advance.
The steps to integrate SplitPay API -
User Authentication API
Seller API
Transaction API
Settlement API
Transaction release API
Payout API
Refund
You can read the documentation here - https://developers.citruspay.com/documentation/payment-stack/splitpay/
The cURL APIs can be converted into PHP code. You could use this tool - https://incarnate.github.io/curl-to-php/
Related
I am new to Paypal integration and cannot find how am I supposed to make it. My requisites are the following:
Company registered in Argentina
Users should be able to buy without having to create a Paypal account with a credit card
The integration should not be easily tampered with
With those (I thought) simple requirements I spent many hours and couldn't find a solution that applied.
This is what I found out:
Payments REST API, should not be used for credit card payments
Important: The use of the PayPal REST /payments APIs to accept credit
card payments is restricted. Instead, you can accept credit card
payments with Braintree Direct.
https://developer.paypal.com/docs/api/payments/
Braintree Direct (the method to integrate credit card payments with full customization is not supported in Argentina) https://www.braintreepayments.com/country-selection
NVP and SOAP API Reference (old Paypal API to integrate payments) is no longer supported.
Important: This integration method is Deprecated as of January 1, 2017. For
new integrations, see the PayPal Express Checkout Integration Guide.
https://developer.paypal.com/docs/classic/api/
PayPal Express Checkout Integration is horrible, seems insecure and prone to tampering if used only client side, and though I found a way to make it work more securely with a server-side payment generation I couldn't find a way for it to pay without having a Paypal account.
https://developer.paypal.com/docs/integration/direct/express-checkout/integration-jsv4/
and
https://developer.paypal.com/demo/checkout/#/pattern/client
So I am left with no option to integrate credit card processing through Paypal for a business in Argentina. Before giving up I would like to know if somebody knows of a way to make this integration work.
Payoneer is also an option. Paypal isn't the only thing out there.
Is there any api(Rest) or procedure to refund Google In app product price? Which is provided from Google Play store side.
I am looking for the solution for same, but not got yet. Anybody please guide / suggest me about this.
Thanks in Advance !
In the documentation for Administering In-App Billing, it states this for managed products:
Important: You cannot use the API to issue refunds or cancel In-app Billing transactions. You must do this manually through your Google payments merchant account. However, you can use the API to retrieve order information.
Refunds for in-app purchases must be directed to the app developer. You can then process the refund through your Google payments merchant account.
You can however, use the API to refund and revoke subscriptions,
Yes, you can. See how to authorized first here: https://developers.google.com/android-publisher/authorization
https://developers.google.com/android-publisher/api-ref/rest/v3/orders/refund
Everything does not look good with the Paypal APIs. Paypal Merchant API seems to be deprecated , but most of the examples and functionality is referring to Marchant SDK.For example take Recurring. REST API does not provide any example of Recurring Payments !
In what context this API is deprecated ? I am looking for recurring payments done for "Paypal Payments Advanced" account type.
If you are looking to implement Recurring Billing with PayPal Payments Advanced you'll want to look at the Payflow platform APIs. here is a good place to get started:
https://developer.paypal.com/docs/classic/products/recurring-billing/
Hi i wants to create a ARB Credit card capture page using Authorize.net SIM(Server Integration Method). can any body help me out to solve this problem in zend framework.
You can't do that. You need to access the ARB API directly to set up a subscription through ARB. You can't do it through SIM.
Is there any up to date documentation out there on how to use the Paypal direct payment API?
I found a working demo code for Paypal direct payment API : http://www.mmtutorialvault.com/paypal-pro-integration-in-php/
Google found this:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/library_code
wont that do?
If you are using PHP this component is worth a look. It costs $30, but I found it was well worth the time and effort saved. http://www.binpress.com/app/php-paypal-api-class/20
PayPal provides various payment related operations using the /payment resource and related sub-resources. Use /payment for direct credit card payments and PayPal account payments.
URI: https://api.paypal.com/v1/payments/payment
Create a payment: POST /v1/payments/payment
For more information, refer:
https://developer.paypal.com/webapps/developer/docs/api/#create-a-payment
On the Paypal PHP SDK repo Paypal says :
Direct Credit Card Support
Important: The PayPal REST API no longer supports new direct credit card integrations. Please instead consider Braintree Direct; which is, PayPal's preferred integration solution for accepting direct credit card payments in your mobile app or website. Braintree, a PayPal service, is the easiest way to accept credit cards, PayPal, and many other payment methods.
So Paypal recommands to use Braintree Direct. More details on Braintree direct page