🏷️ API version: 2026-04

The BlockEvent type now includes fields to support automation loops (iterators). These fields let you identify whether a block event is part of a loop and track its progress.

FieldTypeDescription
iterator_idIDThe iterator identifier if the block is part of a loop
current_iterationIntThe current iteration number within the loop
max_iterationsIntThe total configured iterations for the loop

🏷️ API version: 2026-04

You can now query the monday.com developer documentation using AI via the ask_developer_docs query. It returns an AI-generated answer based on the apps documentation, along with a conversation_id you can use for follow-up queries.

query {
  ask_developer_docs(query: "How do I authenticate with the monday API?") {
    id
    question
    answer
    conversation_id
  }
}

🏷️ API version: 2026-04

You can now create, publish, delete, and query knowledge base articles via the API.

Queries

  • articles — retrieve published articles by object ID, with optional workspace filtering and pagination
  • article_blocks — paginate through an article's content blocks
query {
  articles(object_ids: ["12345"], limit: 10, page: 1) {
    id
    name
    privacy_kind
    blocks {
      id
      type
      content
    }
  }
}

Mutations

mutation {
  create_article(
    name: "Getting started guide"
    workspace_id: "123456"
  ) {
    object_id
    name
  }
}
mutation {
  publish_article(
    object_id: "789"
    privacy_kind: PUBLIC
  ) {
    object_id
    name
    state
  }
}
🏷️ API version: 2026-04

New fields have been added to support app features within the platform:

Folder

FieldTypeDescription
app_feature_slugStringThe app feature slug associated with this folder (Folders 2.0)

The same app_feature_slug field has also been added to GraphqlHierarchyObjectFolderItem (favorites folder items).

AppFeatureType

FieldTypeDescription
reference_idIDThe reference ID of the app feature
🏷️ API version: 2026-04

The API now supports AI agent attribution in two areas:

Reaction attribution

The Reaction type on updates includes two new fields to identify when a reaction was created by an AI agent on behalf of a user:

FieldTypeDescription
attribution_entity_refStringReference ID of the entity that created the reaction (e.g., agent_{agentId})
attribution_entity_typeAttributionEntityThe type of entity — currently supports AGENT

Agent as assignee kind

The Kind enum now includes agent as a value, allowing AI agents to appear as assignees alongside person and team.

New query_params filter on workspaces query

🏷️ API version: 2026-04

The workspaces query now accepts a query_params argument to filter workspaces by account product kind.

Supported product kinds: core, crm, forms, marketing, project_management, service, software, whiteboard.

query {
  workspaces(query_params: { account_product_kind: project_management }) {
    id
    name
  }
}
🏷️ API version: 2026-04

The Board type now includes two new fields:

FieldTypeDescription
created_from_board_idIDThe source board this board was created from (e.g., when duplicated from a template)
folderFolderThe folder containing this board (null if the board is not in a folder)
query {
  boards(ids: [1234567890]) {
    id
    name
    created_from_board_id
    folder {
      id
      name
    }
  }
}
🏷️ API version: 2026-04

The AggregateGroupByResult type no longer exposes separate typed fields for group-by values. The following fields have been removed:

  • value_string (String)
  • value_int (Int)
  • value_float (Float)
  • value_boolean (Boolean)

These are replaced by a single unified field:

"""The value of the group by result. Can be an integer, float, string, or boolean."""
value: JSON

If your integration references value_string, value_int, value_float, or value_boolean, you must migrate to the value field and handle type coercion on the client side.

🏷️ API version: 2026-04

You can now update a board’s item terminology (item nickname) via the update_board mutation.

By setting the board_attribute to item_nickname, you can programmatically control the singular and plural labels used for items on a board.

mutation {
  update_board(
    board_id: 1234567890
    board_attribute: item_nickname
    new_value: "{\"preset_type\":\"other\",\"singular\":\"Task\",\"plural\":\"Tasks\"}"
  )
}