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

You can use the replies query to retrieve replies data via the API.

  • 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 arguments to reduce the number of results returned in your replies query.

ArgumentDescription
board_ids [ID!]!The unique board identifier(s) to return replies from.
created_at_from StringFilters replies created on or after this ISO 8601 timestamp (inclusive).
created_at_to StringFilters replies created on or before this ISO 8601 timestamp (inclusive).
limit IntThe number of replies returned. The default is 25, and the max is 100.
page IntThe page number to return. Starts at 1.

Fields

You can use the following fields to specify what information your replies query will return. Some fields support their own subfields.

Field

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