Replies

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.

ArgumentDescription
board_ids [ID!]!The unique board identifier(s) to return replies from. Only available in API versions 2025-10 and later.
created_at_from StringFilters replies created on or after this ISO 8601 timestamp (inclusive). Only available in API versions 2025-10 and later.
created_at_to StringFilters replies created on or before this ISO 8601 timestamp (inclusive). Only available in API versions 2025-10 and later.
limit IntThe number of replies returned. The default is 25, and the max is 100. Only available in API versions 2025-10 and later.
page IntThe 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.

FieldDescriptionSupported fields
assets [Asset]The reply's assets.
body String!The reply's HTML-formatted body.
created_at DateThe reply's creation date.
creator UserThe reply's creator.
creator_id StringThe 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 StringThe reply's text body.
updated_at DateThe reply's last updated date.
viewers [Watcher!]!The reply's viewers. medium String!
user User
user_id ID!