https://onetouch.apexedi.com/secure/onetouchapi.asmx?WSDL
Retrieves the status of a claim based on a vendor generated claim ID.
When claim data is uploaded to Apex EDI, the vendor can attach a unique, vendor-generated claim ID. Subsequently, this vendor claim ID can be supplied with other appropriate parameters to retrieve the status of the claim.
Resource URL
https://onetouch.apexedi.com/secure/onetouchapi.asmx?WSDL
Code Samples
public static void GetClaimStatusByVendorClaimID(string methodCall) { string content = String.Format("username={0}&password={1}&vendorClaimID={2}", encUserName, encPassword, encClaimID); Console.WriteLine(DoHttpPost(FormatApexUrl(methodCall, ApexUrl, content))); }
public static void GetClaimStatusByVendorClaimID(String methodCall) { String content = String.format("username={0}&password={1}&vendorClaimID={2}",encUserName, encPassword, encClaimID); System.out.println(HttpPost.DoHTTPPost(ApexUrl + methodCall, content, errors)); }
begin url := apexUrl + '/' + 'GetClaimStatusByVendorClaimID'; 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/GetClaimStatusByVendorClaimID" <?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> <GetClaimStatusByVendorClaimID xmlns="http://tempuri.org/"> <username>string</username> <password>string</password> <vendorClaimID>string</vendorClaimID> </GetClaimStatusByVendorClaimID> </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> <GetClaimStatusByVendorClaimID xmlns="http://tempuri.org/"> <username>string</username> <password>string</password> <vendorClaimID>string</vendorClaimID> </GetClaimStatusByVendorClaimID> </soap12:Body> </soap12:Envelope>
GET /secure/onetouchapi.asmx/GetClaimStatusByVendorClaimID?username=string&password=string&vendorClaimID=string HTTP/1.1 Host: onetouch.apexedi.com
POST /secure/onetouchapi.asmx/GetClaimStatusByVendorClaimID 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> <GetClaimStatusByVendorClaimIDResponse xmlns="http://tempuri.org/"> <GetClaimStatusByVendorClaimIDResult>string</GetClaimStatusByVendorClaimIDResult> </GetClaimStatusByVendorClaimIDResponse> </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> <GetClaimStatusByVendorClaimIDResponse xmlns="http://tempuri.org/"> <GetClaimStatusByVendorClaimIDResult>string</GetClaimStatusByVendorClaimIDResult> </GetClaimStatusByVendorClaimIDResponse> </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>
Responses | |
---|---|
Ready | The claim passed Apex EDI's front-end validation edits and will be transmitted to the payer in the next EDI cycle. |
Processed | The claim has been transmitted to the payer. |
Failed | The claim did not pass Apex EDI's front-end validation edits and will not be transmitted to the payer. (To correct a failed claim, see the GoToClaimFormByVendorClaimID call) |
Duplicate | The claim carries the same data as a claim submitted within the last week. The duplicate claim will not be transmitted to payer. |