Return task assigned to given user of which status has is_done flag sets to false.

GET /data/persons/{person_id}/tasks

Path parameters

  • person_id string(uuid) Required

Responses

  • 200 application/json

    Tasks assigned to user that are not done

  • 404

    Person not found

GET /data/persons/{person_id}/tasks
curl \
 --request GET 'http://api.example.com/data/persons/a24a6ea4-ce75-4665-a070-57453082c25/tasks' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {}
]