v1
API
CLI
JS Client

Org / Teams /

Get team

Gets information about a team belonging to the authenticated org.

Required permission

Os > Team > General > Read

Path parameters

    • teamId

      string required
      ID of the team

Response body

  • {object}
    Response object.
    • data

      {object} required
      Result data.
      • id

        string required
        ID of the team.
        pattern
        ^[A-Za-z0-9-]+$
      • name

        string required
        Display name of the team.
      • description

        string
        Description of the team.
      • createdAt

        string required
        The time the team was created.
      • updatedAt

        string
        The time the team was last updated.
API
CLI
JS Client

GET /v1/teams/{teamId}

Example response

200 OK

Details about the team.

JSON

{
  "data": {
    "id": "my-team",
    "name": "My Team",
    "description": "This is my team.",
    "createdAt": "2021-01-20T11:19:53.175Z",
    "updatedAt": "2021-01-20T11:19:53.175Z"
  }
}

© 2026 Northflank Ltd. All rights reserved.