FIREANIME API
Browse API97 operations
POST

CreateFeedback

CreateFeedback submits a new feedback report from the user.

/api.v1.feedback.FeedbackService/CreateFeedback Bearer optional
01

Request

CreateFeedbackRequest

CreateFeedbackRequestapi.v1.feedback.CreateFeedbackRequest6 fields

CreateFeedbackRequest contains the initial report data from a user.

title
string

Title of the feedback report.

description
string

Detailed description of the feedback.

category
string

Category of the feedback (e.g., "bug", "suggestion").

animeIdoptional
uint32

Optional associated anime ID.

animeSeasonIdoptional
uint32

Optional associated anime season ID.

animeEpisodeIdoptional
uint32

Optional associated anime episode ID.

Request JSON
{
  "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.

message
string

A descriptive message indicating the result.

Example response
{
  "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.