SOAP API - getWorkItemOrderFilter

The table summarizes the SOAP API - getWorkItemOrderFilter.

Request Uses the getWorkItemOrderFilter element (from the WorkListService schema)
Parameter notes limitColumns—the number of fields about which information should be returned. A value of 0 gets information about all fields.
Response Returns a getWorkItemOrderFilterResponse element (from the WorkListService schema).
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.brm.n2.tibco.com">

   <soapenv:Header/>

   <soapenv:Body>

      <api:getWorkItemOrderFilter>

         <limitColumns>3</limitColumns>

      </api:getWorkItemOrderFilter>

   </soapenv:Body>

</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">

   <SOAP-ENV:Header/>

   <SOAP-ENV:Body>

      <getWorkItemOrderFilterResponse xmlns="http://api.brm.n2.tibco.com">

         <columnData capability="BOTH_ORDER_FILTER" description="The integer value that denotes the ID of the work item." id="1" name="id" type="COL_NUMERIC" xmlns=""/>

         <columnData capability="FILTER" description="The name of the work item." id="2" name="name" type="COL_STRING" xmlns=""/>

         <columnData capability="FILTER" description="The description of the work item." id="3" name="description" type="COL_STRING" xmlns=""/>

      </getWorkItemOrderFilterResponse>

   </SOAP-ENV:Body>

</SOAP-ENV:Envelope>