REST API - getEditableWorkListViews

The table summarizes the REST API - getEditableWorkListViews.

Request

Format
GET <baseurl>/worklist/editableworklistviews/<startposition>/<numberofitems>
Path parameters
  • startposition: Position in the work view list from which to start this page. (The list is zero-based. To start at the first item, specify 0.).
  • numberofitems: Number of work views (in the work item list) to include in this page.

Response

JSON Returns a JSON representation of the content of the getEditableWorkListViewResponse element.
XML Returns the content of the getEditableWorkListViewResponse element (from the WorkListService schema)

Example

Request
GET <baseurl>/worklist/editableworklistviews/0/3
Response
{

    "xml-fragment": {

        "workListViews": [

            {

                "@workViewID": "1",

                "@name": "SCS123",

                "@description": "new view",

                "@owner": "tibco-admin",

                "@creationDate": "2013-01-21T15:22:45.257Z",

                "@modificationDate": "2013-01-21T15:53:48.490Z",

                "@public": "true"

            },

            {

                "@workViewID": "2",

                "@name": "SCS456",

                "@description": "second view",

                "@owner": "tibco-admin",

                "@creationDate": "2013-01-21T16:13:22.107Z",

                "@modificationDate": "2013-01-21T16:13:22.107Z",

                "@public": "true",

                "orderFilterCriteria": {

                    "order": "startDate ASC"

                }

            }

        ]

    }

}