The Monday Updates Reader connector queries the monday item and returns meta data about one udpdate or a collection of updates. Additionally, the connector supports querying and returning edits of the updates and replies to updates. Besides the body of the update TextBody
- plain text, Body
- HTML, the reader returns the Update ID
, Item ID
, CreatedAt
, UpdatedAt
, data about Creator
and Replies
data. For more details see the output in the Input and Output schema section.
Updates limitation
Be aware that the monday.com does have a limitation on the updates per item. It is set to 1000 updates.
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.
Monday updates reader configuration
Item ID
The ID of the item needs to match the existing item id of an item in the board to return the single pulse (item) result. You can use relevant placeholders as input data, e.g. ${input.ID}
will be replaced by the value found in ID
value.
Number of last updates
The number of the last updates that will be read by the connector.
The default value is set to 0. This setting will return all updates. Mind that one item in monday.com can only have 1000 updates.
Input & Output Schema
Input
Data schema is optional
The connector does not expect a specific schema. The required data structure can be achieved by correct configuration. Although the selected connector doesn't require a schema generally, the individual integration task step may need to match the output data structure of the preceding task step and use a data schema selected from the repository or create a new input schema.
Output
Monday updates reader output (ver. 1.0.0)
Column | Data type | Allow null | Description |
---|---|---|---|
ID | string | No | Update ID |
ItemID | string | No | monday.com Item ID (pulse ID) |
CreatedAt | DateTime | No | Created timestamp |
UpdatedAt | DateTime | Yes | |
TextBody | string | Yes | Update content - plain text |
Body | string | Yes | Update content - HTML |
Creator | Monday updates reader creator 1.0.0 |
No | Monday updates reader creator |
Replies | Monday updates reader reply 1.0.0 |
Yes | Monday updates reader reply |
Monday updates reader creator (ver. 1.0.0)
Column | Data type | Allow null | Description |
---|---|---|---|
ID | string | No | User ID |
Name | string | No | User name |
Monday updates reader reply (ver. 1.0.0)
Column | Data type | Allow null | Description |
---|---|---|---|
ID | string | No | Update ID |
CreatedAt | DateTime | No | Created timestamp |
UpdatedAt | DateTime | Yes | |
TextBody | string | Yes | Update content - plain text |
Body | string | Yes | Update content - HTML |
Creator | Monday updates reader creator 1.0.0 |
Yes | Monday updates reader creator |
Release notes
3.2.0
- Migration to API-Version 2023-10
3.1.2
- Updated package binaries because of changes in another included connector
3.1.1
- Right processing API-Version header
3.1.0
- First release