monday.com boards are where users input all of their data, making them one of the core platform components. Items (rows), groups (groups of rows), and columns comprise the board's structure, and the board's data is stored in items and their respective updates sections. We support three types of boards that come with different sets of permissions: main, shareable, and private.

As a developer working with monday.com, it is important to familiarize yourself with the boards API so you know how to access board data. This document will walk you through the available queries and mutations to read and modify the boards object via the API.

Queries

Required scope: boards:read

Querying boards will return metadata about one or a collection of boards. This method accepts various arguments and returns an array.

You can query boards directly at the root or nest it within another query. If you want to retrieve all items on a board, you can use the items_page field in your board query.

query {
  boards (ids: 1234567890) {
    name
    state
    permissions
    items_page {
      items {
        id
        name
      }
    }
  }
}
let query = 'query { boards (ids: 1234567890) { name state permissions items_page { items { id name }}}}';

fetch ("https://api.monday.com/v2", {
  method: 'post',
  headers: {
    'Content-Type': 'application/json',
    'Authorization' : 'YOUR_API_KEY_HERE'
   },
   body: JSON.stringify({
     'query' : query
   })
  })
   .then(res => res.json())
   .then(res => console.log(JSON.stringify(res, null, 2)));

Arguments

You can use the following argument(s) to reduce the number of results returned in your boards query.

ArgumentDescriptionEnum values
board_kind BoardKindThe type of board to return.private
public
share
ids [ID!]The specific board IDs to return.
limit IntThe number of boards to return. The default is 25.
order_by BoardsOrderByThe order in which to retrieve your boards. created_at (desc.)
used_at (desc.)
page IntThe page number to return. Starts at 1.
state StateThe state of board to return. The default is active.active
all
archived
deleted
workspace_ids [ID]The specific workspace IDs that contain the boards to return.

Fields

You can use the following field(s) to specify what information your boards query will return. Please note that some fields will have their own arguments.

FieldDescriptionSupported arguments
activity_logs [ActivityLogType]The activity log events for the queried board(s).column_ids [String]
from ISO8601DateTime
group_ids [String]
item_ids [Int]
limit Int
page Int
to ISO8601DateTime
user_ids [Int]
board_folder_id IDThe unique identifier of the folder that contains the board(s). Returns null if the board is not in a folder.
board_kind BoardKind!The type of board: public, private, or share.
columns [Column]The board's visible columns.ids [String]
types [ColumnType!]
communication JSONThe board's communication value (typically a meeting ID).
creator User!The board's creator.
description StringThe board's description.
groups [Group]The board's visible groups.ids [String]
id ID!The board's unique identifier.
item_terminology StringThe nickname for items on the board. Can be a predefined or custom value.
items_count IntThe number of items on the board.
items_page ItemsResponse!The board's items. cursor String
limit Int!
query_params ItemsQuery
name String!The board's name.
owner User! (DEPRECATED)The user who created the board.
owners [User]!The board's owners.
permissions String!The board's permissions: everyone, collaborators, assignee, or owners.
state State!The board's state: all, active, archived, or deleted.
subscribers [User]!The board's subscribers.
tags [Tag]The specific tags on the board.
top_group Group!The group at the top of the board.
type BoardObjectTypeThe board's object type: board, sub_items_board, document, or custom_object.
updated_at ISO8601DateTimeThe last time the board was updated.
updates [Update]The board's updates. limit Int
page Int
url String!The board's URL. Please note that this is only available in API versions 2024-04 and later.
views [BoardView]The board's views. ids [Int]
type String
workspace WorkspaceThe workspace that contains the board. Returns null for the Main workspace.
workspace_id IDThe unique identifier of the board's workspace. Returns null for the Main workspace. Please note that this field's type is ID in API versions 2023-10 and later.

Mutations

Required scope: boards:write

Create a board

The create_board mutation allows you to create a new board via the API. You can also specify what fields to query back from the new board when you run the mutation. Please note that the user that creates the board via the API will automatically be added as the board's owner when creating a private or shareable board or if the board_owners_ids argument is missing.

🚧

Mutation-specific rate limit

This mutation has an additional rate limit of 40 mutations per minute. If you exceed this limit, you will receive 429 HTTP response code with a Call limit exceeded for CreateBoard error message.

mutation {
  create_board (board_name: "my board", board_kind: public) {
    id
  }
}
let query = 'mutation { create_board (board_name: \"my board\", board_kind: public) {	id }}';

fetch ("https://api.monday.com/v2", {
  method: 'post',
  headers: {
    'Content-Type': 'application/json',
    'Authorization' : 'YOUR_API_KEY_HERE'
   },
   body: JSON.stringify({
     'query' : query
   })
  })
   .then(res => res.json())
   .then(res => console.log(JSON.stringify(res, null, 2)));

Arguments

You can use the following argument(s) to define the new board's characteristics.

ArgumentDescription
board_kind BoardKind!The type of board to create: public, private, or share.
board_name String!The new board's name.
board_owner_ids [ID!]A list of the IDs of the users who will be board owners.
board_subscriber_ids [ID!]A list of the IDs of the users who will subscribe to the board.
board_subscriber_teams_ids [ID!]A list of the IDs of the teams who will subscribe to the board.
description StringThe new board's description.
folder_id IDThe board's folder ID.
template_id IDThe board's template ID.*
workspace_id IDThe board's workspace ID.

*You can see your personal template IDs in the template preview screen by activating Developer Mode in your monday.labs. For built-in templates, the template ID will be the board ID of the board created from the template.

Duplicate a board

The duplicate_board mutation allows you to duplicate a board with all of its items and groups to a specific workspace or folder of your choice via the API.

🚧

Mutation-specific rate limit

This mutation has an additional rate limit of 40 mutations per minute. If you exceed this limit, you will receive 429 HTTP response code with a "Call limit exceeded for DuplicateBoard" error message.

You can also specify what fields to query back from the new board when you run the mutation. The query will also indicate whether the process is synchronous or asynchronous. Since an asynchronous duplication process may take some time to complete, the query may initially return partial data.

mutation {
  duplicate_board(board_id: 1234567890, duplicate_type: duplicate_board_with_structure) {
    board {
      id
    }
  }
}
let query = 'mutation { duplicate_board(board_id: 1234567890, duplicate_type: duplicate_board_with_structure) { board { id }}}';

fetch ("https://api.monday.com/v2", {
  method: 'post',
  headers: {
    'Content-Type': 'application/json',
    'Authorization' : 'YOUR_API_KEY_HERE'
   },
   body: JSON.stringify({
     'query' : query
   })
  })
   .then(res => res.json())
   .then(res => console.log(JSON.stringify(res, null, 2)));

Arguments

You can use the following argument(s) to specify which board to duplicate and what properties to include.

ArgumentDescription
board_id ID!The board's unique identifier.
board_name StringThe duplicated board's name. If omitted, it will be automatically generated.
duplicate_type DuplicateBoardType!The duplication type: duplicate_board_with_structure, duplicate_board_with_pulses, or duplicate_board_with_pulses_and_updates.
folder_id IDThe destination folder within the destination workspace. The folder_id is required if you are duplicating to another workspace, otherwise, it is optional. If omitted, it will default to the original board's folder.
keep_subscribers BooleanAbility to duplicate the subscribers to the new board. Defaults to false.
workspace_id IDThe destination workspace. If omitted, it will default to the original board's workspace.

Update a board

The update_board mutation allows you to update a board via the API.

mutation {
  update_board(board_id: 1234567890, board_attribute: description, new_value: "This is my new description") 
}
let query = 'mutation { update_board(board_id: 1234567890, board_attribute: description, new_value: "This is my new description")}';

fetch ("https://api.monday.com/v2", {
  method: 'post',
  headers: {
    'Content-Type': 'application/json',
    'Authorization' : 'YOUR_API_KEY_HERE'
   },
   body: JSON.stringify({
     'query' : query
   })
  })
   .then(res => res.json())
   .then(res => console.log(JSON.stringify(res, null, 2)));

Arguments

You can use the following argument(s) to specify which board to update and its new value.

ArgumentDescription
board_attribute BoardAttributes!The board's attribute to update: name, description, or communication.
board_id ID!The board's unique identifier.
new_value String!The new attribute value.

Archive a board

The archive_board mutation allows you to archive a board via the API. You can also specify what fields to query back from the archived board when you run the mutation.

mutation {
  archive_board (board_id: 1234567890) {
    id
  }
}
let query = 'mutation { archive_board (board_id: 1234567890) { id }}';

fetch ("https://api.monday.com/v2", {
  method: 'post',
  headers: {
    'Content-Type': 'application/json',
    'Authorization' : 'YOUR_API_KEY_HERE'
   },
   body: JSON.stringify({
     'query' : query
   })
  })
   .then(res => res.json())
   .then(res => console.log(JSON.stringify(res, null, 2)));

Arguments

You can use the following argument(s) to specify which board to archive.

ArgumentDescription
board_id ID!The board's unique identifier.

Delete a board

The delete_board mutation allows you to delete a board via the API. You can also specify what fields to query back from the deleted board when you run the mutation.

mutation {
  delete_board (board_id: 1234567890) {
    id
  }
}
let query = 'mutation { delete_board (board_id: 1234567890) { id }}';

fetch ("https://api.monday.com/v2", {
  method: 'post',
  headers: {
    'Content-Type': 'application/json',
    'Authorization' : 'YOUR_API_KEY_HERE'
   },
   body: JSON.stringify({
     'query' : query
   })
  })
   .then(res => res.json())
   .then(res => console.log(JSON.stringify(res, null, 2)));

Arguments

You can use the following argument(s) to specify which board to delete.

ArgumentDescription
board_id ID!The board's unique identifier.

Add subscribers to a board (DEPRECATED)

The add_subscribers_to_board mutation allows you to add subscribers to a board via the API. You can use the add_users_to_board mutation instead.

mutation {
  add_subscribers_to_board (board_id: 1234567890, user_ids: [12345678, 87654321, 01234567], kind: owner) {
    id
  }
}
let query = 'mutation { add_subscribers_to_board (board_id: 1234567890, user_ids: [12345678, 87654321, 01234567], kind: owner) { id } }';

fetch ("https://api.monday.com/v2", {
  method: 'post',
  headers: {
    'Content-Type': 'application/json',
    'Authorization' : 'YOUR_API_KEY_HERE'
   },
   body: JSON.stringify({
     'query' : query
   })
  })
   .then(res => res.json())
   .then(res => console.log(JSON.stringify(res, null, 2)));

Arguments

You can use the following argument(s) to specify which users to subscribe to the board.

ArgumentDescription
board_id ID!The board's unique identifier.
kind BoardSubscriberKindThe subscriber's kind: subscriber or owner.
user_ids [Int]!The user IDs to subscribe to the board.

📘

Join our developer community!

We've created a community specifically for our devs where you can search through previous topics to find solutions, ask new questions, hear about new features and updates, and learn tips and tricks from other devs. Come join in on the fun! 😎