This is similar to the retrieveActiveJobsList
but retrieves a list of all jobs associated with a particular caller, whether or not they are active.
<xsd:element name="retrieveFullJobsListRequest"> <xsd:complexType> <xsd:sequence/> </xsd:complexType> </xsd:element>
<xsd:element name="retrieveFullJobListResponse"> <xsd:complexType> <xsd:sequence> <xsd:element maxOccurs="unbounded" minOccurs="0" ref="types:ticket"/> </xsd:sequence> </xsd:complexType> </xsd:element>
<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <retrieveFullJobsListRequest xmlns="urn:oasis:names:tc:wstrans:v1:types"/> </soapenv:Body> </soapenv:Envelope>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <retrieveFullJobsListResponse xmlns="urn:oasis:names:tc:wstrans:v1:types"> <ticket jobId="job-001" projectId="project-001" userId="user-001"/> <ticket jobId="job-002" projectId="project-002" userId="user-002"/> <ticket jobId="job-003" projectId="project-003" userId="user-003"/> </retrieveFullJobsListResponse> </soapenv:Body> </soapenv:Envelope>
See also: retrieveActiveJobsList