SOAP API - getPublicWorkListViews

The table summarizes the SOAP API - getPublicWorkListViews.

Request Uses the getPublicWorkListViews element (from the WorkListService schema)
Parameter notes
  • startPosition: the position in the list of work views from which to start the page of results. The list is zero-based. To start at the first item, specify 0.
  • numberOfItems: the number of work views to return.
  • apiVersion: the version of the work list view definition to be returned. Either:
    • 2, to return a work list view that includes the getAllocatedItems attribute and resourcesRequired parameter, or
    • 1, to return a work list view that omits the getAllocatedItems attribute and resourcesRequired parameter. (You should use this value to maintain compatibility with work list views created in pre-2.2 versions of BPM.) This is the default behavior if apiVersion is not specified.
Response Returns a getPublicWorkListViewsResponse 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:getPublicWorkListViews startPosition="0" numberOfItems="10"/>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <getPublicWorkListViewsResponse xmlns="http://api.brm.n2.tibco.com">
         <workListViews creationDate="2012-08-15T09:29:03.470Z" description="This is a test" modificationDate="2012-08-15T12:01:28.100Z" name="Test" owner="tibco-admin" public="true" workViewID="13" xmlns=""/>
      </getPublicWorkListViewsResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>