Replies to a comment.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
replies
array
Required
No description available.
Errors
CommentNotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "CommentNotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"replies"
],
"properties": {
"cursor": {
"type": "string"
},
"replies": {
"type": "array",
"items": {
"ref": "app.didpic.feed.defs#commentView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"limit": {
"type": "integer",
"default": 30,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Replies to a comment."
}