OrderService


Click here for a complete list of operations.

AvailableImages2


This method allows a customer to get a list of images that can be downloaded. See GetImage2 for how to download a image.

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.
DescriptionWill contain a textual description of the Status. Will often contain more details when the status is an error.
Images 0-N List of image information records. Each record has the following fields:
FieldDDescription
Category
The Type of Image. 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.
ImageTypeIf the Category is a Vesting, Encumbrance, Bankruptcy, or Judgment this field indicates the Type of image as specified by the source title System.
IdHow to Identify this image when requesting for it.
Format
The native storage format of the document. May be:
  • GIF
  • TIF
  • JPG
  • PNG
  • HTM
  • PDF
  • TXT
  • XML
Pagesif available, , the number of pages contained with the image.


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/AvailableImages2"

<?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>
    <AvailableImages2 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>
    </AvailableImages2>
  </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>
    <AvailableImages2Response xmlns="http://TitleAutomation.valuecheck.com/">
      <AvailableImages2Result>
        <AccountNum>string</AccountNum>
        <OrderNum>string</OrderNum>
        <Sts>int</Sts>
        <Description>string</Description>
        <StsDate>dateTime</StsDate>
        <Images>
          <ImageReturnInfo>
            <Category>string</Category>
            <ImageType>string</ImageType>
            <Id>string</Id>
            <Format>string</Format>
            <Pages>int</Pages>
          </ImageReturnInfo>
          <ImageReturnInfo>
            <Category>string</Category>
            <ImageType>string</ImageType>
            <Id>string</Id>
            <Format>string</Format>
            <Pages>int</Pages>
          </ImageReturnInfo>
        </Images>
      </AvailableImages2Result>
    </AvailableImages2Response>
  </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>
    <AvailableImages2 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>
    </AvailableImages2>
  </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>
    <AvailableImages2Response xmlns="http://TitleAutomation.valuecheck.com/">
      <AvailableImages2Result>
        <AccountNum>string</AccountNum>
        <OrderNum>string</OrderNum>
        <Sts>int</Sts>
        <Description>string</Description>
        <StsDate>dateTime</StsDate>
        <Images>
          <ImageReturnInfo>
            <Category>string</Category>
            <ImageType>string</ImageType>
            <Id>string</Id>
            <Format>string</Format>
            <Pages>int</Pages>
          </ImageReturnInfo>
          <ImageReturnInfo>
            <Category>string</Category>
            <ImageType>string</ImageType>
            <Id>string</Id>
            <Format>string</Format>
            <Pages>int</Pages>
          </ImageReturnInfo>
        </Images>
      </AvailableImages2Result>
    </AvailableImages2Response>
  </soap12:Body>
</soap12:Envelope>