Got error code 10755 currency is not supported

avula
New Community Member

I have used pay pal recurring  express checkout payment for IN country with INR currency code.i have set merchant account business details with Indian country.I have done payment process through php code.I can use the test card details to gone through the payment successful.After successful payment it redirects to my website and then get the token and payer id from the URL then i can successfully handled the GetExpressCheckoutDetails method and DoExpressCheckoutPayment.I got the ACK response as success.After that tried to create the profile using method CreateRecurringPaymentsProfile .so i have passed parameter like

curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query(array(
'USER' => 'developervlinstitute_api1.gmail.com',
'PWD' => '',
'SIGNATURE' => '',


'METHOD' => 'CreateRecurringPaymentsProfile',
'VERSION' => '95',
'LOCALECODE' => 'en_GB',

'TOKEN' => $token,
"PAYER ID"=>$payerId,

'PROFILESTARTDATE' => date('Y-m-d H:i:s'),
'PROFILEREFERENCE' => $userid,
'DESC' => 'monthly payment',
'BILLINGPERIOD' => 'Month',
'BILLINGFREQUENCY' => '1',
'TOTALBILLINGCYCLES' => '2',
'AMT' => '1',
'CURRENCYCODE' => 'INR',
'COUNTRYCODE' => 'IN',
'MAXFAILEDPAYMENTS' => 3
)));

But it always return the response like

[TIMESTAMP] => 2019-02-07T07:25:45Z
    [CORRELATIONID] => 80d34ddd5e8
    [ACK] => Failure
    [VERSION] => 95
    [BUILD] => 46457558
    [L_ERRORCODE0] => 10755
    [L_SHORTMESSAGE0] => Transaction refused because of an invalid argument. See additional error messages for details.
    [L_LONGMESSAGE0] => Currency is not supported
    [L_SEVERITYCODE0] => Error
 Please help me to get rid of this issue.Am struggling to solve this issue.

 

Login to Me Too
0 REPLIES 0

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.