GET
/
project
/
team
/
{team_id}
curl --request GET \
  --url https://api.chartbrew.com/project/team/{team_id} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "dashboardTitle": "<string>",
    "description": "<string>",
    "team_id": 123,
    "brewName": "<string>",
    "backgroundColor": "<string>",
    "titleColor": "<string>",
    "headerCode": "<string>",
    "footerCode": "<string>",
    "public": false,
    "password": "<string>",
    "autoUpdate": {
      "enabled": false,
      "type": "every_x_minutes",
      "frequencyNumber": "1",
      "time": {
        "hour": 9,
        "minute": 0,
        "second": 0,
        "millisecond": 0
      }
    },
    "lastUpdatedAt": "2023-11-07T05:31:56Z",
    "Charts": [
      {
        "id": 123,
        "layout": {}
      }
    ]
  }
]

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

200
application/json
Array of dashboards
id
integer
name
string
dashboardTitle
string
description
string
team_id
integer
brewName
string
backgroundColor
string
titleColor
string
headerCode
string
public
boolean
default:
false
password
string
autoUpdate
object
lastUpdatedAt
string
Charts
object[]