Hi, in this case check the value of the variable "business" in the PRO form you are using, it must be one of the following two: "Secure Merchant ID (found on the profile page) or the email address associated with your PayPal account." If you pass the email address it must be in the standard email format myname@mydomain.com and not like the API user format myname_api1.mydomain.com This will allow the PRO form working on https://bergogliolibri.it/peova.html
... View more
Hi, the plan_id (e.g. P-6YA672828E76572XXXXXXXXX) is a unique value accross all the Apps as when you create a plan_id you are the only one allowed to check and use its details. If was not unique then other developers could get information on this plan_id. The same applies for the payment_id (PAY-05XXXXXXXX).
... View more
Hi, yes it looks like you are only creating the payment and not executing it. Just to be sure I post the whole procedure for a payment creation in REST (replace live or sandbox endpoints at your convenience): https://developer.paypal.com/docs/integration/direct/make-your-first-call/#make-an-api-call > get an access token: https://developer.paypal.com/docs/integration/direct/make-your-first-call/#get-an-access-token > create a payment with https://api.paypal.com/v1/payments/payment passing the access token > you get a payment_id > execute the payment with /v1/payments/payment/<your_payment_id>/execute You can find at these links the guide with more details: - https://developer.paypal.com/docs/integration/direct/payments/paypal-payments/ - https://developer.paypal.com/docs/integration/direct/make-your-first-call/
... View more
Ciao Mario, per attivare le reference transactions dipende dal tipo di conto che hai. Se hai un conto Business dovresti chiamare il servizio di Business Support e chiedere a loro di aprire una richiesta per valutare l'abilitazione delle ReferenceTransactions. Altrimenti chiama il Servizio Clienti e ti sapranno dare delle indicazioni. Questa funzione viene abilitata solo in alcuni casi. Ecco i link con i numeri:
http://www.paypal.com/cgi-bin/webscr?cmd=_contact-general
http://www.paypal.com/cgi-bin/webscr?cmd=_contact-phone
... View more
Hi, I checked and we had a release on Monday afternoon that was fixing the missing WebHooks you reported. From Monday on if there is a dispute you should see the event fired.
Cheers,
Andrea
... View more
This error (10413) arises when the sum of the product amounts (price X quantity) + shipping + handling + tax, is not the same than the total sent in your cart (PAYMENTREQUEST_0_AMT). In your case the plugin sent a rounded value that can create this issue. Try to uninstall and re-install the plugin as this value is sent from the code in the plugin itself.
... View more
In this case the issue is on the currency_code that must be GBP while I see in your variable as GB. You can find here the currency codes: https://developer.paypal.com/webapps/developer/docs/classic/api/currency_codes/
... View more
Hi, if you require an address (address_override = 1) then you need to pass all the address variables to get the button work correctly. From the list you posted you are missing:
country
state
They both must be 2 characters long, uppercase, from the lists below:
country: https://developer.paypal.com/webapps/developer/docs/classic/api/country_codes/
state: https://developer.paypal.com/webapps/developer/docs/classic/api/state_codes/
... View more