Other types

Learn about other types supported by the docs APIs

The monday.com docs APIs enable you to create, read, update, and delete monday docs.

The types below are used by the docs queries and mutations, and are not independently queryable.

CreateDocInput

An input object indicating the target location for creating the new doc.

FieldTypeDescriptionSupported Arguments
boardCreateDocBoardInputThe new document's location (when creating a doc on a board).column_id String!
item_id ID!
workspaceCreateDocWorkspaceInputThe new document's location (when creating a doc in a workspace).kind BoardKind
name String!
workspace_id ID!

CreateDocBoardInput

An input object containing the target item and column for creating the new doc.

FieldTypeDescription
column_idString!The unique identifier of the column to create the new doc in.
item_idID!The unique identifier of the item to create the new doc on.

CreateDocWorkspaceInput

An input object containing the target workspace for creating the new doc.

FieldTypeDescriptionEnum Values
kindBoardKindThe kind of document to create.private
public
share
nameString!The new document's name.
workspace_idID!The unique identifier of the workspace to create the new doc in.

DocBlocksFromMarkdownResult

The result of adding markdown content to a document.

FieldTypeDescription
block_ids[String!]An array of block IDs that were created from the markdown content.
errorStringThe error message (if the operation failed).
successBoolean!Whether the markdown was converted successfully and added to the document.

ImportDocFromHtmlResult

The result of converting HTML content to a new monday doc.

FieldTypeDescription
doc_idStringThe unique identifier of the newly created document.
errorStringThe error message (if the operation failed).
successBoolean!Whether the HTML was converted successfully and imported as a new document.