Other Types

Learn about the other types used when creating boards via the API

The monday.com boards API lets you query a board's content, settings, permissions, creator data, and more.

The object types below provide additional data structures used across the board API’s CRUD operations. They extend the core types documented in the main boards reference and are used to create and configure new boards, update board members, and retrieve detailed board information.

ItemNicknameInput

An object containing the item nickname.

FieldDescription
plural StringThe plural form of the item nickname
preset_type StringThe preset type for item nickname.
singular StringThe singular form of the item nickname.

SetBoardPermissionResponse

An object containing the result of setting a board's permissions via the API.

Field

Description

Enum Values

edit_permissions BoardEditPermissions!

Specifies which group of users is allowed to edit the board’s content. This setting reflects the board's technical editing permissions.

assignee
collaborators
everyone
owners

failed_actions [String!]

Any actions that failed during the permission update process.


UpdateBoardHierarchyAttributesInput

An object containing the board's attributes to update.

Field

Description

Supported Fields

account_product_id ID

The board's updated account product ID. You must also provide the relevant workspace_id within the updated product.

folder_id ID

The board's updated folder ID.

position DynamicPosition

The board's updated position in the left-side menu.

is_after Boolean
object_id String!
object_type ObjectType!

workspace_id ID

The board's updated workspace ID.

Dynamic position

An object containing the board's updated position in the left-side menu of the platform.

Field

Description

Enum Values

is_after Boolean

Specifies where to position the target board relative to the reference object:

  • Set to true to place the target after the reference
  • Set to false to place the target before the reference

object_id String!

The unique identifier of the reference object that the target board should be positioned relative to.

object_type ObjectType!

The type of the reference object.

Board
Folder
Overview


UpdateBoardHierarchyResult

An object containing the result of updating a board's position, product, or workspace.

FieldDescription
board BoardThe updated board.
message StringA message about the operation's result.
success Boolean!Whether the operation was successful.