---
title: "GET /v1/designs/{designId}/comments/{threadId}/replies"
method: GET
path: "/v1/designs/{designId}/comments/{threadId}/replies"
tags: ["comment"]
---

# GET /v1/designs/{designId}/comments/{threadId}/replies

`GET /v1/designs/{designId}/comments/{threadId}/replies`

<Warning>
This API is currently provided as a preview. Be aware of the following:
- There might be unannounced breaking changes.
- Any breaking changes to preview APIs won't produce a new [API version](https://www.canva.dev/docs/connect/versions/).
- Public integrations that use preview APIs will not pass the review process, and can't be made available to all Canva users.
</Warning>

Retrieves a list of replies for a comment or suggestion thread on a design.

For information on comments and how they're used in the Canva UI, see the
[Canva Help Center](https://www.canva.com/help/comments/).

## Path parameters

- `designId` string, required
- `threadId` string, required

## Query parameters

- `limit` integer — The number of replies to return.
- `continuation` string

## Response `200`

OK

- ListRepliesResponse — Successful response from a `listReplies` request.
  - `continuation` string — If the success response contains a continuation token, the list contains more items you can list. You can use this token as a query parameter and retrieve more items from the list, for example `?continuation={continuation}`. To retrieve all items, you might need to make multiple requests.
  - `items` Reply[], required
    - `id` string, required — The ID of the reply.
    - `design_id` string, required — The ID of the design that the thread for this reply is attached to.
    - `thread_id` string, required — The ID of the thread this reply is in.
    - `author` User — Metadata for the user, consisting of the User ID and display name.
      - `id` string, required — The ID of the user.
      - `display_name` string — The name of the user as shown in the Canva UI.
    - `content` CommentContent, required — The content of a comment thread or reply.
      - `plaintext` string, required — The content in plaintext. Any user mention tags are shown in the format `[user_id:team_id]`.
      - `markdown` string — The content in markdown. Any user mention tags are shown in the format `[user_id:team_id]`
    - `mentions` object, required — The Canva users mentioned in the comment thread or reply.
    - `created_at` integer, required — When the reply was created, as a Unix timestamp (in seconds since the Unix Epoch).
    - `updated_at` integer, required — When the reply was last updated, as a Unix timestamp (in seconds since the Unix Epoch).

## Other responses

- `403` — Forbidden
- `404` — Not Found
- `default` — Error Response

---

[API](https://skmtc.net/canva/apis/canva-connect-api.md) · [All operations](https://skmtc.net/canva/apis/canva-connect-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/canva/canva-connect-api/versions/499c392c7720/schema)
