Skip to content
Richard Thombs edited this page May 20, 2016 · 17 revisions

List the Item Lists in a Project

GET /api/projects/:pid/itemlists

Returns an array of all the Item Lists in the specified Project. Only the latest version of each Item List is returned.

Get Item List

GET /api/projects/:pid/itemlists/:id

Retrieves a specific Item List.

Response

{
  ItemListID: 1,    // The Item List's unique ID
  Name: 'My list',  // The Item List's name
  Version: 1        // The Item List's version number
}

Note: This API is under development and may change without notice.

Clone this wiki locally