Get status of all tasks in a list

Hello,

Is it possible to get the status of all tasks within a list via API?
Is there a specific endpoint for this?

Thanks in advance!

Hey @make ,
you can simply call the projecttasks endpoint and add a filter on the lists like this: GET projects/{projectId]/projecttasks?filterby=lists/any(l: l/id eq guid’{tasklistId}')
The tasks inside then include the taskStatus property.

In general, I would recommend to check out our API endpoints here: https://openapi.awork.com/, check out the models of each endpoint to find the filterable properties, and then add a filter depending on your needs. An overview of the filter options can be found here: Filtering | awork Developer Docs | awork.com

Hope this helps!
Best wishes
Ian

Thanks a lot!