---
title: "Get comment"
method: GET
path: "/comments/{comment_id}"
tags: ["Comments"]
---

# Get comment

`GET /comments/{comment_id}`

Retrieves the message and metadata for a specific comment, as well
as information on the user who created the comment.

## Path parameters

- `comment_id` string, required

## Query parameters

- `fields` string[]

## Response `200`

Returns a full comment object.

- CommentFull — Base representation of a comment.
  - `id` string — The unique identifier for this comment.
  - `type` 'comment' — The value will always be `comment`.
  - `is_reply_comment` boolean — Whether or not this comment is a reply to another comment.
  - `message` string — The text of the comment, as provided by the user.
  - `created_by` object — A mini user object representing the author of the comment.
    - `id` string, required — The unique identifier for this user.
    - `type` 'user', required — The value will always be `user`.
    - `name` string — The display name of this user.
    - `login` string, email — The primary email address of this user.
  - `created_at` string, date-time — The time this comment was created.
  - `modified_at` string, date-time — The time this comment was last modified.
  - `item` object — The file this comment was placed on.
    - `id` string — The unique identifier for this object.
    - `type` string — The type for this object.
  - `tagged_message` string — The string representing the comment text with @mentions included. @mention format is @[id:username] where `id` is user's Box ID and `username` is their display name.

## Other responses

- `default` — An unexpected client error.

---

[API](https://skmtc.net/box/apis/platform-api.md) · [All operations](https://skmtc.net/box/apis/platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/box/platform-api/revisions/ba8f087e1a4d/schema)
