Page 1 of 1

SOAP Interface For ACHNow

Posted: Thu May 25, 2017 2:27 pm
by ptiseo
I am trying to work with the webservice located at:
https://www.achnow.us/achnowwebservice/ ... .asmx?WSDL

When I use the SOAP Tester, all I get is a "parameters" box when selecting a method. Or, in the Fuse+ interface, one textbox for entering the parameters for any method, esp. the "PayByCheck" one.

How do I use this webservice in Fuse+?

Re: SOAP Interface For ACHNow

Posted: Fri May 26, 2017 11:07 am
by support
Your webservice expects a single parameter that is an object. For example, the PayByCheck method expects an object that has the member variables UserId, Password, etc. In Fuse+, you will need to construct a JSON string like this:

{ "UserId": "123", "Password": "abc", ... }