Dear Sir,
Solved! Go to Solution.
02-22-2013 02:19 AM
double check the merchant loginID and transactionKey. Or try regenerating a new transactionKey.
02-22-2013 04:14 AM
Dear Raynor,
I have done :) I just reset the transaction key and now it's working fine. Thanks 4 your support.
02-25-2013 12:27 AM
double check the merchant loginID and transactionKey. Or try regenerating a new transactionKey.
02-22-2013 04:14 AM
Thank's i'll check and let you know
02-23-2013 12:01 AM
Dear RaynorC1emen7,
I double check my credentials login id and transaction key even i reset the transaction key but still i am facing hte same error .
02-24-2013 02:26 AM
If you try new one and still getting the same response, can you log you request just before it send to authorize.net to make sure it is send to api.authorize.net? and what was the response reason code?
02-24-2013 04:11 AM
Dear Raynor,
Thanks for your quick response. I'm getting the below error.
Response Code: E00007
Response Text: User authentication failed due to invalid authentication values.
I am using the api.authorize.net url.
$host = "api.authorize.net";
$path = "/xml/v1/request.api";
and below is my xml:
$content =
"<?xml version=\"1.0\" encoding=\"utf-8\"?>" .
"<ARBCreateSubscriptionRequest xmlns=\"AnetApi/xml/v1/schema/AnetApiSchema.xsd\">" .
"<merchantAuthentication>".
"<name>" . $loginname . "</name>".
"<transactionKey>" . $transactionkey . "</transactionKey>".
"</merchantAuthentication>".
"<refId>" . $refId . "</refId>".
"<subscription>".
"<name>" . $name . "</name>".
"<paymentSchedule>".
"<interval>".
"<length>". $length ."</length>".
"<unit>". $unit ."</unit>".
"</interval>".
"<startDate>" . $startDate . "</startDate>".
"<totalOccurrences>". $totalOccurrences . "</totalOccurrences>".
"<trialOccurrences>". $trialOccurrences . "</trialOccurrences>".
"</paymentSchedule>".
"<amount>". $amount ."</amount>".
"<trialAmount>" . $trialamount . "</trialAmount>".
"<payment>".
"<creditCard>".
"<cardNumber>" . $cardNumber . "</cardNumber>".
"<expirationDate>" . $expirationDate . "</expirationDate>".
"</creditCard>".
"</payment>".
"<billTo>".
"<firstName>". $firstName . "</firstName>".
"<lastName>" . $lastName . "</lastName>".
"</billTo>".
"</subscription>".
"</ARBCreateSubscriptionRequest>";
//send the xml via curl
$response = send_request_via_curl($host,$path,$content);
Please check and revert me back. I'm still stuck here.
02-24-2013 10:17 PM
Dear Raynor,
I have done :) I just reset the transaction key and now it's working fine. Thanks 4 your support.
02-25-2013 12:27 AM
03-29-2017 03:57 PM
I have reset my transaction KEY and am using the development server.
I too am getting this error. I know the module works fine on the production server as I have it running there now, but am looking to add in some additional features and want to use the sand box for this.
No luck though loggong in. I get the error:
Error Processing Credit Card : E00007 -- User authentication failed due to invalid authentication values.
I know that I am passing the correct values (verified) and and looking to use the development server.
06-11-2019 07:34 AM
I am so lost. how do i get to the or where do i go for resetting the transaction key? is it in cloudbeds? or somewhere else?
01-20-2022 09:28 PM