List projects
projects_list(
permission = NULL,
auto_share = NULL,
author = NULL,
hidden = NULL,
archived = NULL,
limit = NULL,
page_num = NULL,
order = NULL,
order_dir = NULL
)
An array containing the following fields:
integer, The ID for this project.
list, A list containing the following elements:
id integer, The ID of this user.
name string, This user's name.
username string, This user's username.
initials string, This user's initials.
online boolean, Whether this user is online.
string, The name of this project.
string, A description of the project.
array, An array containing the following fields:
id integer, The ID of this user.
name string, This user's name.
username string, This user's username.
initials string, This user's initials.
online boolean, Whether this user is online.
boolean,
string,
string,
string, The archival status of the requested item(s).
string optional. A permissions string, one of "read", "write", or "manage". Lists only projects for which the current user has that permission.
boolean optional. Used to filter projects based on whether the project is autoshare enabled or not.
string optional. If specified, return items from any of these authors. It accepts a comma-separated list of user IDs.
boolean optional. If specified to be true, returns hidden items. Defaults to false, returning non-hidden items.
string optional. The archival status of the requested item(s).
integer optional. Number of results to return. Defaults to 20. Maximum allowed is 1000.
integer optional. Page number of the results to return. Defaults to the first page, 1.
string optional. The field on which to order the result set. Defaults to updated_at. Must be one of: updated_at, name, created_at.
string optional. Direction in which to sort, either asc (ascending) or desc (descending) defaulting to desc.