get https://app.asana.com/api/1.0/user_task_lists/
Returns the full record for a user task list.
Responses
Returns the full record for a user task list.
xxxxxxxxxx
curl --request GET \
--url https://app.asana.com/api/1.0/user_task_lists/user_task_list_gid \
--header 'accept: application/json'
xxxxxxxxxx
17{
"data": {
"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"
}
}
}