Get a review thread including the root review and all replies
Parameters
Output
application/jsonparent
ref#reviewView
Required
Root review of the thread
replies
array
Required
Direct replies to the root review
totalReplies
integer
Required
Total number of replies in the thread
Errors
NotFound
Review not found Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "Review not found"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"parent",
"replies",
"totalReplies"
],
"properties": {
"parent": {
"ref": "#reviewView",
"type": "ref",
"description": "Root review of the thread"
},
"replies": {
"type": "array",
"items": {
"ref": "#reviewView",
"type": "ref"
},
"description": "Direct replies to the root review"
},
"totalReplies": {
"type": "integer",
"minimum": 0,
"description": "Total number of replies in the thread"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the root review"
}
}
},
"description": "Get a review thread including the root review and all replies"
}