EyeLinkWeb Soap service

This is production service. Use https://soap.jzo.azure.virtii.com for testing.

WSDL specification

Methods

UploadCustomFile

Uploads order in b2bOptic format

Request Parameters

Request format

  POST /WebServices/fileupload.asmx HTTP/1.1
  Host: https://soap.eyelink.pl
  Content-Type: text/xml; charset=utf-8
  Content-Length: length
  SOAPAction: "https://soap.eyelink.pl/UploadCustomFile"
  
  <?xml version="1.0" encoding="utf-8"?>
  <soap:Envelope>
    <soap:Body>
      <UploadCustomFile>
        <username>string</username>
        <password>string</password>
        <data>string</data>
        <refId>string</refId>
      </UploadCustomFile>
    </soap:Body>
  </soap:Envelope>

Response Parameters

Response format

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope>
  <soap:Body>
    <UploadCustomFileResponse>
      <UploadCustomFileResult>
        <Url>string</Url>
        <UniqueID>string</UniqueID>
        <Status>string</Status>
        <Error>string</Error>
      </UploadCustomFileResult>
    </UploadCustomFileResponse>
  </soap:Body>
</soap:Envelope>

GetOrderObjectByOrderId

Returns information about order

Request parameters

Request format

  POST /WebServices/fileupload.asmx
  Host: https://soap.eyelink.pl
  Content-Type: text/xml; charset=utf-8
  SOAPAction: "https://soap.eyelink.pl/GetOrderObjectByOrderId"
  
  <?xml version="1.0" encoding="utf-8"?>
  <soap:Envelope>
    <soap:Body>
      <GetOrderObjectByOrderId>
        <orderId>string</orderId>
        <username>string</username>
        <password>string</password>
      </GetOrderObjectByOrderId>
    </soap:Body>
  </soap:Envelope>

Response parameters

Response format

  <?xml version="1.0" encoding="utf-8"?>
  <soap:Envelope >
    <soap:Body>
      <GetOrderObjectByOrderIdResponse>
        <GetOrderObjectByOrderIdResult>
          <Status>string</Status>
          <Error>string</Error>
        </GetOrderObjectByOrderIdResult>
      </GetOrderObjectByOrderIdResponse>
    </soap:Body>
  </soap:Envelope>

SubmitOrderData

Uploads order in OMA format

Request Parameters

Request format

  POST /WebServices/fileupload.asmx HTTP/1.1
  Host: https://soap.eyelink.pl
  Content-Type: text/xml; charset=utf-8
  Content-Length: length
  SOAPAction: "https://soap.eyelink.pl/SubmitOrderData"
  
  <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope>
      <soap:Body>
        <SubmitOrderData>
          <loginInfo>
            <userName>string</userName>
            <passWord>string</passWord>
            <refid>string</refid>
          </loginInfo>
          <rawData>base64Binary</rawData>
        </SubmitOrderData>
      </soap:Body>
    </soap:Envelope>
  

Response Parameters

Response format

    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope >
      <soap:Body>
        <SubmitOrderDataResponse>
          <SubmitOrderDataResult>
            <StartupUrl>string</Url>
            <Success>boolean</Url>
            <UniqueID>string</UniqueID>
            <Error>string</Error>
          </SubmitOrderDataResult>
        </SubmitOrderDataResponse>
      </soap:Body>
    </soap:Envelope>