dashboard-controller
Get dashboards by Dashboard Ids (getDashboardsByIds)
Returns a list of DashboardInfo objects based on the provided ids.
Available for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority.
get/api/dashboards
Query parameters
dashboardIdsstring[] required
A list of dashboard ids, separated by comma ','
Response
OK
Example response
[
{
"id": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "DASHBOARD"
},
"createdTime": 1609459200000,
"tenantId": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "TENANT"
},
"assignedCustomers": [
{
"customerId": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "CUSTOMER"
}
}
]
}
]