Return the distinct project, task type, task status, episode and assignee ids present in the tasks requiring feedback for the current user. Aimed at filling filter combo boxes without loading the full task list.
GET
/data/user/tasks-to-check/filter-values
curl \
--request GET 'http://api.example.com/data/user/tasks-to-check/filter-values' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"project_ids": [
"string"
],
"task_type_ids": [
"string"
],
"task_status_ids": [
"string"
],
"episode_ids": [
"string"
],
"person_ids": [
"string"
]
}