GoToClaimFormByVendorClaimID (Deprecated)

Directs a user to Apex EDI's web-based claim form UI.

The GoToClaimFormByVendorClaimID directs the user to an online web-based version of a specific claim based off a previously assigned vendor claim id. Through this web-based claim form, the user can view, edit, or correct a failed claim.

UPDATE: Due to security concerns this API now only loads the login page for the OneTouch website

Resource URL

https://onetouch.apexedi.com/secure/onetouchapi.asmx?WSDL

Code Samples

  • C#
  • Java
  • Delphi
  • SOAP 1.1
  • SOAP 1.2
  • GET
  • POST
public static void GoToClaimFormByVendorClaimID (string methodCall)
    {
        string content = String.Format("username={0}&password={1}&vendorClaimID={2}", encUserName, encPassword, encVendorClaimID);
        Console.WriteLine(DoHttpPost(FormatApexUrl(methodCall, ApexUrl, content)));
    }
public static void GoToClaimFormByVendorClaimID(String methodCall)
    {
        String content = String.format("username=%s&password=%s&vendorClaimID=%s", encUserName, encPassword, encClaimID);
        System.out.println(HttpPost.DoHTTPPost(ApexUrl + methodCall, content, errors));
    }
begin
    url := apexUrl + '/' + 'GoToClaimFormByVendorClaimID';
    param := TStringList.create;
    param.Add('username=[username]');
    param.Add('password=[password]');
    param.Add('vendorClaimID=ABC123456');
    WriteLn(PostData(url,param));
end;
POST /secure/onetouchapi.asmx HTTP/1.1
Host: onetouch.apexedi.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/GoToClaimFormByVendorClaimID"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GoToClaimFormByVendorClaimID xmlns="http://tempuri.org/">
      <username>string</username>
      <password>string</password>
      <vendorClaimID>string</vendorClaimID>
    </GoToClaimFormByVendorClaimID>
  </soap:Body>
</soap:Envelope>
POST /secure/onetouchapi.asmx HTTP/1.1
Host: onetouch.apexedi.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GoToClaimFormByVendorClaimID xmlns="http://tempuri.org/">
      <username>string</username>
      <password>string</password>
      <vendorClaimID>string</vendorClaimID>
    </GoToClaimFormByVendorClaimID>
  </soap12:Body>
</soap12:Envelope>
GET /secure/onetouchapi.asmx/GoToClaimFormByVendorClaimID?username=string&password=string&vendorClaimID=string HTTP/1.1
Host: onetouch.apexedi.com
POST /secure/onetouchapi.asmx/GoToClaimFormByVendorClaimID HTTP/1.1
Host: onetouch.apexedi.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

username=string&password=string&vendorClaimID=string

Sample Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GoToClaimFormByVendorClaimIDResponse xmlns="http://tempuri.org/">
      <GoToClaimFormByVendorClaimIDResult>string</GoToClaimFormByVendorClaimIDResult>
    </GoToClaimFormByVendorClaimIDResponse>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GoToClaimFormByVendorClaimIDResponse xmlns="http://tempuri.org/">
      <GoToClaimFormByVendorClaimIDResult>string</GoToClaimFormByVendorClaimIDResult>
    </GoToClaimFormByVendorClaimIDResponse>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">string</string>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">string</string>