API Docs

List Dashboards

How to list all dashboards using the Blue API.

To list all dashboards, you can use the following mutation:

query Dashboards {
  dashboards(filter: { companyId: "company-id" }) {
    items {
      id
      title
      createdAt
      updatedAt
    }
  }
}