Skip to main content
GET
/
team
/
{team_id}
cURL
curl --request GET \
  --url https://api.chartbrew.com/team/{team_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "TeamRoles": [
    {
      "id": 123,
      "team_id": 123,
      "user_id": 123,
      "role": "<string>",
      "projects": [
        "<string>"
      ],
      "canExport": true
    }
  ],
  "showBranding": true,
  "allowReportRefresh": true,
  "allowReportExport": true,
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.chartbrew.com/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint returns the team details if the authentication token has access to it.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string
required

ID of the team

Response

Team details

id
integer
name
string
TeamRoles
object[]
showBranding
boolean
allowReportRefresh
boolean
allowReportExport
boolean
createdAt
string<date-time>
updatedAt
string<date-time>