List reviews for a directory listing (mirrored Tap data plus profile enrichment).
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
reviews
array
Required
No description available.
Errors
ListingNotFound
InvalidParams
InvalidCursor
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "ListingNotFound"
},
{
"name": "InvalidParams"
},
{
"name": "InvalidCursor"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"reviews"
],
"properties": {
"cursor": {
"type": "string",
"maxLength": 512
},
"reviews": {
"type": "array",
"items": {
"ref": "#listingReviewView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"maxLength": 2560,
"description": "AT URI of the fyi.atstore.listing.detail record."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 512
}
}
},
"description": "List reviews for a directory listing (mirrored Tap data plus profile enrichment)."
}