A user task list represents the tasks assigned to a particular user. This list is the user's My Tasks list.
UserTaskListCompact
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
name | string | The name of the user task list. |
owner | object | The owner of the user task list, i.e. the person whose My Tasks is represented by this resource. |
owner.gid | string | Globally unique identifier of the resource, as a string. |
owner.resource_type | string | The base type of this resource. |
owner.name | string | Read-only except when same user as requester. The user’s name. |
workspace | object | The workspace in which the user task list is located. |
workspace.gid | string | Globally unique identifier of the resource, as a string. |
workspace.resource_type | string | The base type of this resource. |
workspace.name | string | The name of the workspace. |
Example JSON for UserTaskListCompact
:
{
"gid": "12345",
"resource_type": "user_task_list",
"name": "My tasks in My Workspace",
"owner": {
"gid": "12345",
"resource_type": "user",
"name": "Greg Sanchez"
},
"workspace": {
"gid": "12345",
"resource_type": "workspace",
"name": "My Company Workspace"
}
}
UserTaskList
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
name | string | The name of the user task list. |
owner | object | The owner of the user task list, i.e. the person whose My Tasks is represented by this resource. |
owner.gid | string | Globally unique identifier of the resource, as a string. |
owner.resource_type | string | The base type of this resource. |
owner.name | string | Read-only except when same user as requester. The user’s name. |
workspace | object | The workspace in which the user task list is located. |
workspace.gid | string | Globally unique identifier of the resource, as a string. |
workspace.resource_type | string | The base type of this resource. |
workspace.name | string | The name of the workspace. |
Example JSON for UserTaskList
:
{
"gid": "12345",
"resource_type": "user_task_list",
"name": "My tasks in My Workspace",
"owner": {
"gid": "12345",
"resource_type": "user",
"name": "Greg Sanchez"
},
"workspace": {
"gid": "12345",
"resource_type": "workspace",
"name": "My Company Workspace"
}
}