Get comments for a place.stream.video record.
Parameters
Output
Encoding
application/jsoncomments
array
Required
No description available.
cursor
string
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"comments"
],
"properties": {
"cursor": {
"type": "string"
},
"comments": {
"type": "array",
"items": {
"ref": "place.stream.vod.defs#commentView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"video"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of comments to return."
},
"video": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the place.stream.video record."
},
"cursor": {
"type": "string",
"description": "Optional pagination cursor."
}
}
},
"description": "Get comments for a place.stream.video record."
}