Home > Mobile >  PayPal Billing Agreements with PHP in 2023
PayPal Billing Agreements with PHP in 2023

Time:01-10

How can I use PayPal Billig Agreements with PHP in 2023? A Billing Agreement is different from subscriptions billing as the amount to be charged and time of payment are not fixed.

Currently we still use the PayPal PHP Merchant SDK which still works but is deprecated, 6 years old and does not work with current newer php versions.

The current PayPal REST APIs also has the following deprecation notice: The /v1/payments/billing-agreements endpoints are deprecated

How it is done in 2023?

CodePudding user response:

Billing agreements is old API terminology. The general terms for this type of non-subscriptions billing are reference transactions, future payments, vault, and payment tokens. All of which mean approximately the same thing.

If the PayPal business account is approved for reference transactions, any of the API solutions will work. v2 and v3 vault are the newest ones, only PayPal can advise you on which one to use. There will be no SDK.

  • Related