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.

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 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

ArgumentTypeDescription
board_ids[ID!]!The unique board identifier(s) to return replies from.
created_at_fromStringFilters replies created on or after this ISO 8601 timestamp (inclusive).
created_at_toStringFilters replies created on or before this ISO 8601 timestamp (inclusive).
limitIntThe number of replies returned. The default is 25, and the max is 100.
pageIntThe page number to return. Starts at 1.

Fields

FieldTypeDescriptionSupported Subfields
assets[Asset]The reply's assets.
bodyString!The reply's HTML-formatted body.
created_atDateThe reply's creation date.
creatorUserThe reply's creator.
creator_idStringThe unique identifier of the reply's creator.
edited_atDate!The date the reply was edited.
idID!The reply's unique identifier.
kindString!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 pinned to the top data.item_id ID!
text_bodyStringThe reply's text body.
updated_atDateThe reply's last updated date.
viewers[Watcher!]!The reply's viewers.medium String!
user User
user_id ID!