Dashboard API
Get Team Dashboards
Dashboard API
Get Team Dashboards
GET
/api/dashboard
Explo-Authorization*
curl --request GET \
--url https://api.explo.co/api/dashboard \
--header 'Explo-Authorization: <explo-authorization>'
Response
success
number
Indicates whether the call was successful. 1 if successful, 0 if not.
dashboards
Dashboard[]
The list of dashboards in your team’s workspace
curl --location --request GET 'https://api.explo.co/api/dashboard/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
"success": 1,
"dashboards": [
{
"team_id": 1,
"name": "Example Dashboard",
"embed_id": "vcjTgL2wdX",
"attributes": [
{
"attribute": "Team",
"value": "Engineering"
}
]
},
{
"team_id": 1,
"name": "Production Dashboard",
"embed_id": "JQvCTLT76V",
"attributes": [
{
"attribute": "Status",
"value": "Ready"
},
{
"attribute": "Team",
"value": "Marketing"
}
]
}
]
}
curl --location --request GET 'https://api.explo.co/api/dashboard/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
"success": 1,
"dashboards": [
{
"team_id": 1,
"name": "Example Dashboard",
"embed_id": "vcjTgL2wdX",
"attributes": [
{
"attribute": "Team",
"value": "Engineering"
}
]
},
{
"team_id": 1,
"name": "Production Dashboard",
"embed_id": "JQvCTLT76V",
"attributes": [
{
"attribute": "Status",
"value": "Ready"
},
{
"attribute": "Team",
"value": "Marketing"
}
]
}
]
}