GET /teams/{teamId}/projects

Path parameters

  • teamId string Required

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • identifier string
    • name string
    • versions array[object]
      Hide versions attributes Show versions attributes object
      • identifier string
      • title string
      • changelog string
      • isPrivate boolean
      • released boolean
    • flags array[object]
      Hide flags attributes Show flags attributes object
      • identifier string
      • value string
      • isPrivate boolean
    • latestVersion object
      Hide latestVersion attributes Show latestVersion attributes object
      • identifier string
      • title string
      • changelog string
      • isPrivate boolean
      • released boolean
    • todos array[object]
      Hide todos attributes Show todos 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
curl \
 --request GET 'https://datager.redactado.es/api/v1/teams/{teamId}/projects'
Response examples (200)
[
  {
    "identifier": "string",
    "name": "string",
    "versions": [
      {
        "identifier": "string",
        "title": "string",
        "changelog": "string",
        "isPrivate": true,
        "released": true
      }
    ],
    "flags": [
      {
        "identifier": "string",
        "value": "string",
        "isPrivate": true
      }
    ],
    "latestVersion": {
      "identifier": "string",
      "title": "string",
      "changelog": "string",
      "isPrivate": true,
      "released": true
    },
    "todos": [
      {
        "name": "string",
        "priority": {
          "identifier": "string",
          "weight": 42,
          "displayName": "string",
          "color": "string",
          "description": "string"
        },
        "position": 42,
        "isCompleted": true,
        "completedAt": "2026-05-04T09:42:00Z"
      }
    ]
  }
]