Document Comments
List Thread Comments
Retrieves all comments within a specific thread of a document. Each comment includes the author, comment text, creation timestamp, and any assigned users.
Valid Authentication Methods
API Key Grants:
- DocumentReadonly
OAuth 2.0 User Token Scopes:
- lucidchart.document.content:readonly
- lucidscale.document.content:readonly
- lucidspark.document.content:readonly
- lucid.document.content:readonly
get/v1/documents/{documentId}/threads/{threadId}/comments
Path parameters
documentIdstring uuid required
ID of the document containing the thread.
threadIdstring required
ID of the comment thread to retrieve comments for.
Response
OK with an array of Document Comment resources for the thread's comments.
Example response
[
{
"threadId": "abc123",
"comment": "This is a comment",
"created": "2024-01-01T00:00:00Z"
}
]