Soap API access

Status
Not open for further replies.

akkpatel

Newbie
Premium Subscriber
Joined
Sep 21, 2017
Messages
1
I am trying to use the SOAP Api provided in the database to access some data. My code is attached below, authInfo consists of Username, Password and license key.

var base_url = "http://api.radioreference.com/soap2";
var pl = new SOAPClientParameters();
pl.add("authInfo", authInfo);
SOAPClient.post(base_url, "getUserData", pl, true, callBack);

After running this I keep getting null or error back. I have tried using this in postman as well and keep getting no answer back. I think the base_url I am using is wrong. Can anyone who has used the API help me?

Thanks
 
Status
Not open for further replies.
Top