OrderService


Click here for a complete list of operations.

GetImage2


This method allows a customer to download a particular image. See AvailableImages2 for how to get a list of images that may be downloaded.

Arguments:
AdminIDAdmin Identifier provided by ValueCheck.
UserIDUser Identifier provided by ValueCheck.
PasswordPassword provided by ValueCheck.
VCAppIDApplication Identifier provided by ValueCheck.
VCClientIDCustomer Identifier provided by ValueCheck.
AccountNumCustomer supplied Identifier to indicate individual user or Account.
OrderNum Unique Order Number assigned to this order.
SubmittedTimestamp of this request.

Return:
AccountNumberThe Account Number given in the request.
OrderNumberThe Order Number given in the request.
StsDateTimestamp of the result
Sts
ValueDescription
0All went well.
-1Indication that something went wrong. The description fields will have more info.
-1NotFoundProblem obtaining the image.
-3DoesNotExistimage does not exist.
-4NotAuthorizedClient not authorized to obtain image.
DescriptionWill contain a textual description of the Status. Will often contain more details when the status is an error.
Category
The Type of Image requested. One of the following:
  • Vesting
  • Encumbrance
  • Bankruptcy
  • Judgement
  • Tax
  • TaxCert
  • ParcelMap
  • GISMap
  • Profile
  • GIGap
  • PIChain
  • GIChain
  • ExamNotes
  • Starter
  • DateDown
  • Cover
  • PrelimReport
  • Must be configured; Contact ValueCheck.
  • FinalProduct
  • Must be configured; Contact ValueCheck.
  • SearchPackage
  •  Must be configured; Contact ValueCheck.
IdThe Identifier of the image.
Format
The targeted format of the Image. It the target format is different that the native format, the Image will be converted from the native storage format to the targeted format if possible.
Targeted format may be:
Support conversions (Native -> Target(s)):
  • GIF
  • TIF
  • JPG
  • PNG
  • HTM
  • PDF
  • TXT
  • XML
  • GIF -> PDF TIF JPG PNG
  • TIF -> PDF JPG PNG GIF
  • JPG -> PDF TIF PNG GIF
  • PNG -> PDF TIF JPG GIF
  • HTM -> PDF TIF JPG PNG GIF
  • PDF -> TIF JPG PNG GIF
  • TXT -> PDF TIF JPG PNG GIF
  • XML -> PDF TIF JPG PNG GIF
PageIf 0 or less then all available pages are returned. If applicable, a page > 0 indicates which page # of the image to download.
Doc
If found, the Base64 encoded string of the image. Empty if not found


Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /TA_WS/OrderService.asmx HTTP/1.1
Host: www.valuecheckonline.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://TitleAutomation.valuecheck.com/GetImage2"

<?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>
    <GetImage2 xmlns="http://TitleAutomation.valuecheck.com/">
      <order>
        <AdminID>string</AdminID>
        <UserID>string</UserID>
        <Password>string</Password>
        <VCAppID>int</VCAppID>
        <VCClientID>int</VCClientID>
        <AccountNum>string</AccountNum>
        <OrderNum>string</OrderNum>
        <Submitted>dateTime</Submitted>
      </order>
      <imgInfo>
        <Category>string</Category>
        <Id>string</Id>
        <Format>string</Format>
        <Page>int</Page>
      </imgInfo>
    </GetImage2>
  </soap:Body>
</soap:Envelope>
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>
    <GetImage2Response xmlns="http://TitleAutomation.valuecheck.com/">
      <GetImage2Result>
        <Doc>string</Doc>
      </GetImage2Result>
    </GetImage2Response>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /TA_WS/OrderService.asmx HTTP/1.1
Host: www.valuecheckonline.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>
    <GetImage2 xmlns="http://TitleAutomation.valuecheck.com/">
      <order>
        <AdminID>string</AdminID>
        <UserID>string</UserID>
        <Password>string</Password>
        <VCAppID>int</VCAppID>
        <VCClientID>int</VCClientID>
        <AccountNum>string</AccountNum>
        <OrderNum>string</OrderNum>
        <Submitted>dateTime</Submitted>
      </order>
      <imgInfo>
        <Category>string</Category>
        <Id>string</Id>
        <Format>string</Format>
        <Page>int</Page>
      </imgInfo>
    </GetImage2>
  </soap12:Body>
</soap12: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>
    <GetImage2Response xmlns="http://TitleAutomation.valuecheck.com/">
      <GetImage2Result>
        <Doc>string</Doc>
      </GetImage2Result>
    </GetImage2Response>
  </soap12:Body>
</soap12:Envelope>