Dashboard API
List Team Report Builders
GET
/
api
/
reports
Authorization
curl --location --request GET 'https://api.explo.co/api/reports/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
"success": 1,
"reports": [
{
"name": "Example Report",
"embed_id": "vcjTgL2wdX"
},
{
"name": "Production Report",
"embed_id": "JQvCTLT76V"
}
]
}
Response
success
number
Indicates whether the call was successful. 1 if successful, 0 if not.
reports
Report[]
The list of report builders in your team’s workspace
curl --location --request GET 'https://api.explo.co/api/reports/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
"success": 1,
"reports": [
{
"name": "Example Report",
"embed_id": "vcjTgL2wdX"
},
{
"name": "Production Report",
"embed_id": "JQvCTLT76V"
}
]
}