Skip to main content

Download Workspace name and Boards id and name inside these workspaces

  • February 6, 2024
  • 1 reply
  • 154 views

  • Participating Frequently

I like to download Workspace name and corresponding board id and name
i need query

1 reply

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • February 7, 2024

Hello there @Channa,

You can use a query like this one to get data from your workspaces:

{
  workspaces (limit: 10000) {
    name
    id
    kind
  }
}

Or maybe a query like this one to get your boards and to which workspace they belong:

{
  boards(limit: 1000, page: 1) {
    workspace {
      id
      name
    }
  }
}

Cheers,
Matias