Project Lists allow you to organize Line Items into groups within a Project
Returns a data template that you can fill in to use the CREATE action.
Creates a new list. Use the template provided by the NEW action.
You can also post to a Project List url
Changes the order of Project Lists and the Line Items within.
Will allow you to move items between lists if you so desire. Items must belong to the same project or the operation will fail.
Expects data like the examples below. You may send partial updates, such as one list and the items within, or just the lists you'd like ordered.
XML
<project_lists> <project_list id="1" rank="1"> <line_items> <line_item id="100" rank="1" /> <line_item id="50" rank="2" /> </line_item> </project_list> <project_list id="2" rank="2" /> </project_lists>
{ project_lists: [ {id: 1, rank: 1, line_items: [{id: 100, rank: 1}, {id: 50, rank: 2}]}, {id: 2, rank: 2} ] }
Returns a single list.
Updates an existing project list.
Deletes a project list.
Archives an open project_list, or opens an archived one.
Will also mark all Line Items within COMPLETE.
Project_id may only be set during list creation.
<?xml version="1.0" encoding="UTF-8"?> <project_list> <created_at></created_at> <is_archived read_only="true">false</is_archived> <person_id></person_id> <project_id read_only="true"></project_id> <rank></rank> <title></title> <updated_at read_only="true"></updated_at> </project_list>