The Monday Document By ID 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 document id. You can find the doc_id in the URL as a query string when you open the document.
Example: https://intelstudios.monday.com/boards/4296007778/pulses/4600685851?doc_id=4635000899
Another alternative is to 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 ID reader input (ver. 1.0.0)
Column | Data type | Allow null | Description |
---|---|---|---|
DocumentID | string | No | Document ID |
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 |
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 |
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