A user task list represents the tasks assigned to a particular user. This list is the user's My Tasks list.
UserTaskListCompact
A Compact
object reflects the default fields returned after a successful API request. See input/output options to include more fields in the response.
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 | A user object represents an account in Asana that can be given access to various workspaces, projects, and tasks. |
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 | A workspace is the highest-level organizational unit in Asana. All projects and tasks have an associated workspace. |
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. |
{
"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
A user task list represents the tasks assigned to a particular user. It provides API access to a user’s My Tasks view in Asana.
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 | A user object represents an account in Asana that can be given access to various workspaces, projects, and tasks. |
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 | A workspace is the highest-level organizational unit in Asana. All projects and tasks have an associated workspace. |
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. |
{
"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"
}
}