---
title: "Retrieve an existing comment."
method: GET
path: "/authoring/v1/comments/{id}"
tags: ["Authoring comments"]
---

# Retrieve an existing comment.

`GET /authoring/v1/comments/{id}`

Use the /comments/{id} endpoint to retrieve an existing comment that matches the ID that is specified from the database.<br />User roles: admin, manager, editor, viewer

## Path parameters

- `id` string, required

## Query parameters

- `fields` string[]

## Response `200`

Successfully retrieved the comment that matches the ID you specified.

- object
  - `creatorId` string, required — The ID of the user that created the commment.
  - `id` string, required — The id of the comment.
  - `rev` string, required — The revision of the comment.
  - `message` string, required — The actual comment message.
  - `created` string, date-time, required — ISO-8601 formatted date.
  - `target` object, required
    - `id` string, required — The id of the item that the comment is associated with.
    - `classification` 'asset' | 'content', required — The classification of the item that the comment is associated with.
  - `threadId` string, required — The id string of the thread that this comment belongs to.
  - `classification` string, required — The comment's classification.
  - `kind` string[], required — The "kind" of comment that this is. By default, all comments created by users are "user" comments.
  - `creator` string, required — Display name of the user who created this comment.
  - `lastModifier` string, required — The display name of the user who last edited the comment.
  - `lastModifierId` string, required — The ID of the user who last edited the comment.
  - `lastModified` string, required — The ISO-8601 timestamp that the comment was last modified.
  - `resolved` boolean, required — Used for resolving comments during a review. This property is false by default and changes to true when the comment is resolved.

## Other responses

- `404` — A comment that matches the ID you specified was not found.
- `429` — Too Many Requests, the server has reached a limit, the request must be sent again at a later time.
- `503` — Unable to retrieve the comment from the database as the service is unavailable. Try again later.
- `default` — Unexpected error.

---

[API](https://skmtc.net/goacoustic/apis/acoustic-content-api.md) · [All operations](https://skmtc.net/goacoustic/apis/acoustic-content-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/goacoustic/acoustic-content-api/versions/677305266d89/schema)
