Thread Comments
Request
GET
https://api.wiki.yandex.net/v1/pages/{idx}/comments/{comment_id}/thread
Path parameters
|
Name |
Description |
|
comment_id |
Type: integer |
|
idx |
Type: integer |
Query parameters
|
Name |
Description |
|
cursor |
Type: string Example: `` |
|
page_size |
Type: integer Number of results per page. Default: Min value: Max value: |
Responses
200 OK
OK
Body
application/json
{
"results": [
{
"id": 0,
"body": "example",
"inline_text": "example",
"parent_id": 0,
"author": {
"id": 0,
"identity": null,
"username": "example",
"display_name": "example",
"is_dismissed": true,
"affiliation": "example"
},
"thread_id": 0,
"created_at": "2025-01-01T00:00:00Z",
"is_deleted": true,
"resolve_status": "resolved",
"reactions": [
{
"type": "like",
"author": null,
"created_at": "2025-01-01T00:00:00Z"
}
]
}
],
"next_cursor": "example",
"prev_cursor": "example",
"page_id": 0
}
|
Name |
Description |
|
page_id |
Type: integer For backward compatibility: always equals 1 when a cursor is set |
|
results |
Type: CommentSchema[] Example
|
|
next_cursor |
Type: string Example: |
|
prev_cursor |
Type: string Example: |
UserIdentity
User identifier
|
Name |
Description |
|
cloud_uid |
Type: string User identifier in the cloud (for the external instance) Example: |
|
uid |
Type: string User identifier in Yandex (for the internal instance) Example: |
Example
{
"uid": "example",
"cloud_uid": "example"
}
UserSchema
Information about the user
|
Name |
Description |
|
affiliation |
Type: string User affiliation (for example, Example: |
|
display_name |
Type: string User display name Example: |
|
id |
Type: integer Internal user identifier |
|
is_dismissed |
Type: boolean The user has been dismissed |
|
username |
Type: string User login Example: |
|
identity |
All of 1 type
User identifier in the system Example
|
Example
{
"id": 0,
"identity": {
"uid": "example",
"cloud_uid": "example"
},
"username": "example",
"display_name": "example",
"is_dismissed": true,
"affiliation": "example"
}
CommentResolveStatus
Comment resolve status:
resolved— the comment is resolvedunresolved— the comment is not resolved
Type: string
Enum: resolved, unresolved
ReactionType
Comment reaction type:
like— likehooray— hoorayconfused— confusedheart— heartrocket— rocketeyes— eyesfire— fireok— okfacepalm— facepalmcheck— check marklaugh— laughdislike— dislike
Type: string
Enum: like, hooray, confused, heart, rocket, eyes, fire, ok, facepalm, check, laugh, dislike
CommentReactionSchema
|
Name |
Description |
|
author |
Type: UserSchema Information about the user Example
|
|
created_at |
Type: string<date-time> Example: |
|
type |
Type: ReactionType Comment reaction type:
Enum: |
Example
{
"type": "like",
"author": {
"id": 0,
"identity": {
"uid": "example",
"cloud_uid": "example"
},
"username": "example",
"display_name": "example",
"is_dismissed": true,
"affiliation": "example"
},
"created_at": "2025-01-01T00:00:00Z"
}
CommentSchema
A comment on the page
|
Name |
Description |
|
author |
All of 1 type
Comment author Example
|
|
body |
Type: string Comment text Example: |
|
created_at |
Type: string<date-time> Date and time the comment was created Example: |
|
id |
Type: integer Unique comment identifier |
|
is_deleted |
Type: boolean Comment deletion flag |
|
reactions |
Type: CommentReactionSchema[] Reactions to the comment Example
|
|
resolve_status |
All of 1 type
Comment resolve status Example: |
|
inline_text |
Type: string The text the comment is attached to (for inline comments) Example: |
|
parent_id |
Type: integer The ID of the parent comment (for replies in a thread) |
|
thread_id |
Type: integer Comment thread ID |
Example
{
"id": 0,
"body": "example",
"inline_text": "example",
"parent_id": 0,
"author": {
"id": 0,
"identity": {
"uid": "example",
"cloud_uid": "example"
},
"username": "example",
"display_name": "example",
"is_dismissed": true,
"affiliation": "example"
},
"thread_id": 0,
"created_at": "2025-01-01T00:00:00Z",
"is_deleted": true,
"resolve_status": "resolved",
"reactions": [
{
"type": "like",
"author": null,
"created_at": "2025-01-01T00:00:00Z"
}
]
}