getJobResults (soap)

« Back to api method list

API versions: 1.0 – 3.0

download the wsdl

Get the result file(s) for the specified job id

API Version

We recommend always using the latest version of the API. Please see the available versions here.

Parameters

Parameters with a * are required

  • userId *

    The user for this API call.

  • password *

    The password for the user.

  • key *

    The API key for this account. To request an API key, please go to our API key request page.

  • jobId *

    The id of the job you’re requesting the files for.


SOAP Request

POST /api/1.0/soap HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://services.drawloop.com/getJobResults"

<?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>
        <getJobResults xmlns="http://services.drawloop.com/">
          <userId>userId</userId>
          <password>password</password>
          <key>key</key>
          <jobId>jobId</jobId>
        </getJobResults>
    </soap:Body>
</soap:Envelope>



SOAP 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>
        <getJobResultsResponse xmlns="http://services.drawloop.com/">
            <getJobResultsResult>array of APIFile</getJobResultsResult>
        </getJobResultsResponse>
    </soap:Body>
</soap:Envelope>

© 2012 Drawloop Technologies, Inc. - All Rights Reserved.