The Monday Document Updater allows you to update existing block content in the Monday workDoc.
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 updating of the block in the workDoc is the block id and the block content for the update.
To find the block id, use the Developers API playground and use GraphQL query
query {
docs (ids:6201574) {
blocks {
id
type
content
}
}
}
{
"data": {
"docs": [
{
"blocks": [
{
"id": "e3d80a86-7bc4-4eb9-a402-182f7d84c4af",
"type": "normal text",
"content": "{\"alignment\":\"center\",\"deltaFormat\":[{\"insert\":\"First line: Test of mondayDoc writer, writing a normal text block.\",\"attributes\":{\"bold\":true,\"color\":\"white\",\"underline\":true,\"background\":\"black\"}}]}"
},
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 updater input (ver. 1.0.0)
Column | Data type | Allow null | Description |
---|---|---|---|
BlockID | string | No | The block's unique identifier |
Content | JSON | No | The block's content |
Output
This connector does not require a schema.
Release notes
3.1.0
- Migration to API-Version 2023-10
3.0.2
- Updated package binaries because of changes in another included connector
3.0.1
- Right processing API-Version header
3.0.0
- First release