Learn how to read replies to monday.com updates using the platform API
On the monday.com platform, users can reply directly to updates to collaborate within a thread.
Queries
Get replies
- Returns an array of metadata objects for replies to an update(s)
- Can be queried directly at the root or nested within an
updatesquery
query {
replies(
board_ids: [1234567890],
created_at_to: "2025-08-02",
created_at_from: "2025-01-01"
) {
body
created_at
edited_at
creator {
id
name
}
}
}Arguments
| Argument | Type | Description |
|---|---|---|
| board_ids | [ID!]! | The unique board identifier(s) to return replies from. |
| created_at_from | String | Filters replies created on or after this ISO 8601 timestamp (inclusive). |
| created_at_to | String | Filters replies created on or before this ISO 8601 timestamp (inclusive). |
| limit | Int | The number of replies returned. The default is 25, and the max is 100. |
| page | Int | The page number to return. Starts at 1. |
Fields
| Field | Type | Description | Supported Subfields |
|---|---|---|---|
| assets | [Asset] | The reply's assets. | |
| body | String! | The reply's HTML-formatted body. | |
| created_at | Date | The reply's creation date. | |
| creator | User | The reply's creator. | |
| creator_id | String | The unique identifier of the reply's creator. | |
| edited_at | Date! | The date the reply was edited. | |
| id | ID! | The reply's unique identifier. | |
| kind | String! | The reply's kind. | |
| likes | [Like!]! | The reply's likes. | created_at Datecreator Usercreator_id Stringid ID!reaction_type Stringupdated_at Date |
| pinned_to_top | [UpdatePin!]! | The reply's pinned to the top data. | item_id ID! |
| text_body | String | The reply's text body. | |
| updated_at | Date | The reply's last updated date. | |
| viewers | [Watcher!]! | The reply's viewers. | medium String!user Useruser_id ID! |
