Get Jobs

GetJobs returns the a list of transactions executed by the partner.

Example: (SOAP:BODY) Request pending transactions of i-register from 2004-08-01 to 2004-08-06.

<GetJobs>
<Userid>i-register</Userid>

Set Type to error to display transactions that resulted in an error, to complete to display all transactions that have executed successfully, and to pending to display all pending transactions. Unpaid Transactions from your private label site are marked Pending.

<Type>pending</Type>

Start and End are optional. If omitted, the last 100 transactions are displayed.


<Start>2004-08-01</Start>
<End>2004-08-06</End>


</GetJobs>


The GetJobs response returns the following information for each transaction obtained:

  • the date the request was executed(trandate),
  • transaction id (tranID)
  • amount
  • list of domains in the transaction(domains)


    Example: (SOAP:BODY) Response to the GetJobs Request


    <GetJobsResponse>
    <return>
    <![CDATA[
    <Jobs>



    <Job trandate="2004-08-06 12:09:36.197275" tranID="2135" status="pending" jds="RegisterDomain" domains="thecompany.co.nz" amount="42.75" source="PrivateLabel" userid="" category="pending"/>


    <Job trandate="2004-08-06 11:48:04.976264" tranID="2134" status="pending" jds="RegisterDomain" domains="thecompany.co.nz" amount="42.75" source="PrivateLabel" userid="" category="pending"/>
    <Job trandate="2004-07-21 17:34:52.542134" tranID="1999" status="pending" jds="RegisterDomain" domains="companies.net.nz" amount="42.75" source="PrivateLabel" userid="" category="pending"/>
    </Jobs>]]>
    </return>
    </GetJobsResponse>


    July 23, 2004


    [ Back ]