Get tasks from a user task list
GET
/user_task_lists/{user_task_list_gid}/tasks
Tasks
Note: Access control is enforced for this endpoint as with all Asana API endpoints, meaning a user’s private tasks will be filtered out if the API-authenticated user does not have access to them.
Note: Both complete and incomplete tasks are returned by default unless they are filtered out (for example, setting
completed_since=now
will return only incomplete tasks, which is the default view for “My Tasks” in Asana.)Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.asana.com/api/1.0/user_task_lists//tasks'
Response Response Example
200 - Example 1
{
"data": [
{
"gid": "12345",
"resource_type": "task",
"name": "Bug Task"
}
]
}
Request
Path Params
user_task_list_gid
string
required
Responses
Modified at 2022-09-13 02:00:32