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. You can retrieve reply information using the replies
object through the platform API.
Queries
- Returns an array of metadata objects for replies to an update(s)
- Can be queried directly at the root or nested within an
updates
query
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
You can use the following argument(s) to reduce the number of results returned in your replies
query.
Argument | Description |
---|---|
board_ids [ID!]! | The unique board identifier(s) to return replies from. Only available in API versions 2025-10 and later. |
created_at_from String | Filters replies created on or after this ISO 8601 timestamp (inclusive). Only available in API versions 2025-10 and later. |
created_at_to String | Filters replies created on or before this ISO 8601 timestamp (inclusive). Only available in API versions 2025-10 and later. |
limit Int | The number of replies returned. The default is 25, and the max is 100. Only available in API versions 2025-10 and later. |
page Int | The page number to return. Starts at 1. Only available in API versions 2025-10 and later. |
Fields
You can use the following field(s) to specify what information your replies
query will return. Please note that some fields will have their own supported fields.
Field | Description | Supported fields |
---|---|---|
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 Date creator User creator_id String id ID! reaction_type String updated_at Date |
pinned_to_top [UpdatePin!]! | The reply's pin to 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 User user_id ID! |