POST
CreateFeedback
CreateFeedback submits a new feedback report from the user.
/api.v1.feedback.FeedbackService/CreateFeedback Bearer optional01
Request
CreateFeedbackRequest
CreateFeedbackRequestapi.v1.feedback.CreateFeedbackRequest6 fields
CreateFeedbackRequest contains the initial report data from a user.
titlestringTitle of the feedback report.
descriptionstringDetailed description of the feedback.
categorystringCategory of the feedback (e.g., "bug", "suggestion").
animeIdoptionaluint32Optional associated anime ID.
animeSeasonIdoptionaluint32Optional associated anime season ID.
animeEpisodeIdoptionaluint32Optional associated anime episode ID.
{
"title": "Frieren: Beyond Journey’s End",
"description": "Example content",
"category": "string",
"animeId": 1,
"animeSeasonId": 1,
"animeEpisodeId": 1
}02
Response
CreateFeedbackResponse
CreateFeedbackResponseapi.v1.feedback.CreateFeedbackResponse1 fields
CreateFeedbackResponse confirms the submission of feedback.
messagestringA descriptive message indicating the result.
{
"message": "success"
}03
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.