ListUserReviews
List User Reviews through the Review service.
/api.v1.review.ReviewService/ListUserReviews Bearer optionalRequest
ListUserReviewsRequest
ListUserReviewsRequestapi.v1.review.ListUserReviewsRequest3 fields
List User Reviews Request message.
userIdoptionaluint32User Id value.
pageint32Page value.
limitint32Limit value.
{
"userId": 1,
"page": 1,
"limit": 20
}Response
ListUserReviewsResponse
ListUserReviewsResponseapi.v1.review.ListUserReviewsResponse4 fields
List User Reviews Response message.
pageint32Page value.
totalPagesint32Total Pages value.
totalResultsint32Total Results value.
{
"data": [
{
"id": 1,
"animeId": 1,
"authorId": 1,
"author": {
"id": 1,
"username": "fireanime_user",
"avatarUrl": "/anime/frieren"
},
"title": "Frieren: Beyond Journey’s End",
"content": "Example content",
"storyScore": 85,
"animationScore": 85
}
],
"page": 1,
"totalPages": 1,
"totalResults": 1
}Referenced models
2 nested message types
AnimeReviewapi.v1.review.AnimeReview22 fields
Anime Review message.
iduint32Id value.
animeIduint32Anime Id value.
authorIduint32Author Id value.
titlestringTitle value.
contentstringContent value.
storyScoreint32Story Score value.
animationScoreint32Animation Score value.
soundScoreint32Sound Score value.
characterScoreint32Character Score value.
enjoymentScoreint32Enjoyment Score value.
isVerifiedWatcherboolIs Verified Watcher value.
isSpoilerboolIs Spoiler value.
languagestringLanguage value.
helpfulCountint32Helpful Count value.
viewerFoundHelpfulboolViewer Found Helpful value.
isHiddenboolIs Hidden value.
canEditboolCan Edit value.
canDeleteboolCan Delete value.
createdAtstringCreated At value.
updatedAtstringUpdated At value.
permalinkstringPermalink value.
Error handling
Common failure codes
unauthenticatedThe Bearer token is missing or invalid.
invalid_argumentThe request payload failed validation.
internalThe service could not complete the operation.