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 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
- Migration to API-Version 2023-10
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