GET /teams/{teamId}/projects/{projectIdentifier}/todos

Path parameters

  • teamId string Required
  • projectIdentifier string Required

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • name string
    • priority object
      Hide priority attributes Show priority attributes object
      • identifier string
      • weight integer
      • displayName string
      • color string
      • description string
    • position integer
    • isCompleted boolean
    • completedAt string(date-time)
GET /teams/{teamId}/projects/{projectIdentifier}/todos
curl \
 --request GET 'https://datager.redactado.es/api/v1/teams/{teamId}/projects/{projectIdentifier}/todos'
Response examples (200)
[
  {
    "name": "string",
    "priority": {
      "identifier": "string",
      "weight": 42,
      "displayName": "string",
      "color": "string",
      "description": "string"
    },
    "position": 42,
    "isCompleted": true,
    "completedAt": "2026-05-04T09:42:00Z"
  }
]