I'mBoardDocs
Resources

Dashboards

Dashboard configurations nested under reports.

A dashboard represents a data visualization configuration within a board. Dashboards are nested under reports — every dashboard belongs to a report via its reportId field.

Relationship to Reports

  • A report is the top-level container (e.g. "Q2 2025 Board Report")
  • A dashboard is a specific visualization within that report (e.g. "Financial Overview", "HR Summary")
  • Every dashboard has a reportId linking it to its parent report
  • A report can contain multiple dashboards of different types

Endpoints

MethodPathDescription
GET/api/v1/boards/:boardId/reports/:reportId/dashboardsList dashboards
GET/api/v1/boards/:boardId/reports/:reportId/dashboards/:dashboardIdGet a dashboard

Dashboard Object

{
  "object": "dashboard",
  "id": "60d5ec49f1a2c8b1f8e4e1f1",
  "boardId": "60d5ec49f1a2c8b1f8e4e1a1",
  "reportId": "60d5ec49f1a2c8b1f8e4e1e1",
  "dashboardType": "financial",
  "title": null,
  "latestVersionId": "60d5ec49f1a2c8b1f8e4e1f2",
  "createdByUserId": "507f1f77bcf86cd799439011",
  "createdAt": "2025-06-20T10:00:00.000Z",
  "updatedAt": "2025-07-01T09:00:00.000Z"
}

Fields

FieldTypeDescription
object"dashboard"Always "dashboard"
idstringOpaque dashboard ID
boardIdstring | nullThe board this dashboard belongs to
reportIdstringThe parent report's ID
dashboardTypestringType: financial, hr, sales, fundraising, etc.
titlestring | nullDashboard title
latestVersionIdstring | nullID of the most recent dashboard version
createdByUserIdstringID of the user who created the dashboard
createdAtstringISO-8601 timestamp
updatedAtstringISO-8601 timestamp

List Dashboards

GET /api/v1/boards/:boardId/reports/:reportId/dashboards

Supports filtering by dashboardType. See Pagination, Filtering & Sorting.

Example

curl -s "https://app.imboard.ai/api/v1/boards/BOARD_ID/reports/REPORT_ID/dashboards?dashboardType=financial" \
  -H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jq

Get a Dashboard

GET /api/v1/boards/:boardId/reports/:reportId/dashboards/:dashboardId

On this page