Get a Comment by ID

Fetch a Comment by its ID

SecurityJWT or OAuth2 or DeveloperToken
Request
path Parameters
comment_id
required
string <uuid>

Comment ID

Example: eefb57e0-79f2-4bc7-9b70-99fbc175175c
query Parameters
include
string
Responses
200

Comment success response

Response Schema: application/json
annotation
string
completed
boolean
completed_at
string
completer_id
string <uuid>
has_replies
boolean
id
string <uuid>
like_count
integer
object (User)

User model

owner_id
string <uuid>
text
string
timestamp
integer
401

Unauthorized response

404

Not Found response

get/v2/comments/{comment_id}
Request samples
Response samples
application/json
{
  • "annotation": "[...]",
  • "completed": false,
  • "completed_at": "2020-07-15T17:30:00.906305Z",
  • "completer_id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
  • "has_replies": true,
  • "id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
  • "like_count": 10,
  • "owner": {
    },
  • "owner_id": "bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb",
  • "text": "This is a comment.",
  • "timestamp": 60
}