cancel
Showing results for 
Search instead for 
Did you mean: 

ARB - Alternating between NO RESPONSE and E000007

In Brief:

 

trying to create subscription. Given all details, and worked my way through other response errors with no problem. However, now, I either get an empty (false) response, or I see an error code E000007

 

I know the E000007 code has something to deal with either invalid credentials, or using the wrong developement or production host.

 

I have checked the credentials and they should be okay, and I have switched around playing with every possibility of dev/prod hosts. still not working. 

 

Finally, the distinguishing key, is if i use https://apit.authorize.net then the response is empty, if i just use api.authorize.net, i get the E000007 error.

 

Any help is greatly appreciated! 

Thank you.

merrickc24
Member
1 ACCEPTED SOLUTION

Accepted Solutions

Alright, I made a new test account myself, and it ended up working. So I guess I had the wrong credentials or something. 

 

HOWEVER

/// THIS DOES NOT WORK

$host = "https://apitest.authorize.net";
$path = "/xml/v1/request.api";

 

But this works

$host = "apitest.authorize.net";
$path = "/xml/v1/request.api";

 

using php, authnetfunction.php from example. sent using:

 

send_request_via_curl($host,$path,$content);

 

 

Just thought I would say something just in case. But thank you for the quick response! Sorry to trouble you.

View solution in original post

2 REPLIES 2

Just try it on my test account and it work fine on https://apitest.authorize.net/soap/v1/Service.asmx

RaynorC1emen7
Expert

Alright, I made a new test account myself, and it ended up working. So I guess I had the wrong credentials or something. 

 

HOWEVER

/// THIS DOES NOT WORK

$host = "https://apitest.authorize.net";
$path = "/xml/v1/request.api";

 

But this works

$host = "apitest.authorize.net";
$path = "/xml/v1/request.api";

 

using php, authnetfunction.php from example. sent using:

 

send_request_via_curl($host,$path,$content);

 

 

Just thought I would say something just in case. But thank you for the quick response! Sorry to trouble you.