Using the PayPal REST API endpoint for an Express Checkout, if PayPal doesn't recognize the customer by a cookie, the checkout page is displayed according to the region of the merchant account. How can this be changed?
PayPal REST API - Express Checkout - How to change default language?
856 Views Asked by Tobias Mühl At
3
There are 3 best solutions below
1

You can change the locale of PayPal pages to match the language on your website using either a 2-character country code or a 5-character locale code from the supported codes listed on the NVP/SOAP API locale codes page. To change the language displayed on the PayPal pages, set the LOCALECODE parameter to one of the allowable values in the SetExpressCheckout call
This example sets LOCALCODE
to ES
for Spain.
[requiredSecurityParameters]
&METHOD=SetExpressCheckout
&RETURNURL=https://...
&CANCELURL=https://...
&PAYMENTREQUEST_0_AMT=10.00
&PAYMENTREQUEST_0_CURRENCYCODE=EUR
&PAYMENTREQUEST_0_PAYMENTACTION=Sale
&LOCALECODE=ES
Visit Paypal Developer to learn more.
0

I would suggest adding an HTTP header Accept-Language
with one of the following codes: Supported locale codes
Well, RTFM.
I ended up creating a new Web Experience Profile, which allows to set the locale code. The Web Experience Profile ID can be passed to the ExpressCheckout API call.
Note: When querying the endpoint that lists all Web Experience profiles, PayPal does not return temporary profiles. You need to write down the ID you get from the create response.