Skip to content
background-image background-image

Monday workDocs (mondayDoc) by item column reader

[ | version 3.1]

Connector

The connector is permitted for use of the platform background agent.

Connector processing type: Row by row!

The monday document by item column reader allows you to retrieve the Monday document content for further interpretation and manipulation.

A workdoc is a flexible, multi-media whiteboard where you and your team can record all notes and ideas related to one central topic. By adding individual elements to your workdoc, all your loose thoughts and ideas can come together in one place. Find more on workDocs here and or here.

The input required for reading the workDoc is the item id (pulseID) and the column id where the workDoc is located. You can find the item id (pulseID) in the URL (/pulses/4600685851) when you are located on the respective item in the monday board.

Example: https://intelstudios.monday.com/boards/4296007778/pulses/4600685851

To find the column, use the Developers API playground and use GraphQL query

query {
  boards (ids: 4296947778) {
    items (ids: 4635685851) {
      column_values {
        value
        text
        id
      }
        }
    }
}
The column id will be in the id element of the column_values of the respective workDoc column.

The connector has a structured output including header data and the content data structured in blocks.


Configuration

Monday Connection configuration

API token

The API token for the connection configuration can be found in monday.com > User avatar > Developers > Developer > My Access Tokens.

Timeout

The timeout (in seconds) for the request to monday.com work management platform. The default value is 60 seconds.


Input & Output Schema

Input

Monday Docs By Item Column Reader Input (ver. 1.0.0)

Column Data type Allow null Description
ItemID string No monday.com Item ID (pulseID)
ColumnID string No Column ID of the column where the doc is located

Output

Monday docs reader output (ver. 1.0.0)

Column Data type Allow null Description
ID string No
ObjectID string No Document ID
Name string Yes Document name/title
Url string No Document URL
IsEmpty boolean No Indicates if the document has been created
Settings JSON Yes Document settings
Blocks Monday Docs Reader Block v1.0.0 Yes Document blocks with the content

Monday docs reader block

Column Data type Allow null Description
ID string No Block id
ParentBlockID string Yes Id of the parent block
Type string No Type of block e.g. normal text, numbered list, etc.
Content JSON Yes The block content

Release notes

3.1.0

3.0.3

  • Updated package binaries because of changes in another included connector

3.0.2

  • Right processing IsEmpty property in Output schema

3.0.1

  • Right processing API-Version header

3.0.0

  • First release