For schedule usages, for each active person, it returns the first start

GET /data/persons/task-dates

date of all tasks of assigned to this person and the last end date.

Query parameters

  • project_id string(uuid)

    Filter by project ID

Responses

  • 200 application/json

    For each person, the first start date of all tasks assigned to this person and the last end date

    Hide response attributes Show response attributes object
    • person_id string(uuid)
    • first_start_date string(date)
    • last_end_date string(date)
  • 403

    Admin permissions required

GET /data/persons/task-dates
curl \
 --request GET 'http://api.example.com/data/persons/task-dates' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "person_id": "string",
    "first_start_date": "2025-05-04",
    "last_end_date": "2025-05-04"
  }
]