cancel
Showing results for 
Search instead for 
Did you mean: 

Hosted CIM Updgrade

We are currently in the process of ugrading the depricated services we are using and I have gotten to the point where I am trying to upgrade our usage of the hosted CIM forms. We have a javascript file that is managing the Authorize.net popups which is setting a forms action using the following code:

 

if (AuthorizeNetPopup.options.useTestEnvironment) {
    form.action = "https://test.authorize.net/profile/" + opt.action;
} else {
    form.action = "https://secure2.authorize.net/profile/" + opt.action;
}

From what I can tell, the test and production URL's are depricated URL's and we need to change them but I'm having a difficult time trying to find the upgrade path for these lines of code. Do I just need to change the URL's or is it going to be a larger change? If I just need to update the URL"s, what do I need to update them to?

 

Thanks!

jfkrueger
Contributor
1 REPLY 1

Here are the new URLs

 

Current Accept Customer URLs

https://accept.authorize.net/customer/_formName_ (for Production)

https://test.authorize.net/customer/_formName_ (for Sandbox) 

Deprecated Hosted CIM Form URLs

https://secure.authorize.net/profile/_formName_ (for Production)

https://test.authorize.net/profile/_formName_ (for Sandbox) 

brianmc
Administrator Administrator
Administrator