How match ratings work and improve future recommendations.
3 min readEvery matched issue has thumbs up/down buttons. Your feedback directly improves the quality of future recommendations.
Note
// Request body
interface FeedbackRequest {
matchId: string; // ID of the match record
rating: 1 | 5; // 1 = not useful, 5 = perfect match
}
// Response
interface FeedbackResponse {
success: boolean;
data: { feedbackId: string };
}On this page