Dashboards
List all dashboards
Dashboards
List all dashboards
Get all dashboards for a team
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the team
Response
200
application/json
Array of dashboards
The response is of type object[]
.
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": {}
}
]
}
]