/dashboards/list
GET https://tezzela.com/api/v1/dasboards/list
Description
This endpoint retrieves a list of all dashboards associated with your API key.
It returns a JSON array where each item contains the id, title, and widgets of an existing dashboard. This allows you to:
Quickly inspect which dashboards have already been published.
Display a list of available dashboards in a management or admin interface.
Programmatically verify the existence of a dashboard before deciding whether to create or update it.
This is especially useful when building dashboard automation tools or managing a large number of dashboards for different recipients.
Request Body
Response
[
{
"id": "purchases-dashboard",
"title": "Purchases",
"to": "[email protected]"
},
{
"id": "other-dashboard",
"title": "Other",
"to": "UK34T"
},
{
"id": "third-dashboard",
"title": "Third",
"to": "[email protected]"
}
]Last updated