Projects
Endpoints
Get Projects
Query Parameters
Name
Type
Description
Project[]Data
Projects
type Project = {
_id: string;
name: string;
// Projects can have multiple parents. The root project has no parents.
parents: string[] | null;
// Admin user ids
admins: string[];
// Member user ids
members: string[];
// Child group ids
groups: string[];
// Task state definitions. Exists only when states are customized. Read
// Task States section for more info.
taskStates?: TaskState[];
// Permissions set in the project. Only exists when project permissions
// are customized. Read the Permissions section for more info.
perms?: {
members: PermissionLevels,
everybody: PermissionLevels,
// An object where keys are userIds and values are permission levels object
users?: {
[userId: string]: PermissionLevels,
}
}
}Task States
Permissions
Last updated