Get dashboard by id
GET /v2/dashboard/:id
Retrieves detailed information about a specific dashboard identified by its unique ID. This endpoint returns key dashboard attributes including name, role, tenant association, status, and any configured sections. It is used to fetch a single dashboard configuration for display or editing purposes within the system.
Response Example
{
"_id": "dashboard-id-1",
"name": "Example Dashboard",
"role": "admin",
"roleDisplay": "Administrator",
"tenant": "tenant-id-1",
"status": "inactive",
"sections": [],
"created": "2025-10-29T13:53:56.110Z",
"updated": "2025-10-29T13:53:56.110Z"
}