get_feedback
Retrieve and filter project feedback from FeedbackBasket using criteria like category, status, sentiment, or search terms to analyze bug reports, feature requests, and reviews.
Instructions
Get feedback from your FeedbackBasket projects with filtering options
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter by feedback category | |
includeNotes | No | Include internal notes in the response (default: false) | |
limit | No | Maximum number of results to return (default: 20, max: 100) | |
projectId | No | Filter by specific project ID | |
search | No | Search feedback content for specific text | |
sentiment | No | Filter by sentiment analysis result | |
status | No | Filter by feedback status |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by feedback category",
"enum": [
"BUG",
"FEATURE",
"REVIEW"
],
"type": "string"
},
"includeNotes": {
"description": "Include internal notes in the response (default: false)",
"type": "boolean"
},
"limit": {
"description": "Maximum number of results to return (default: 20, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"projectId": {
"description": "Filter by specific project ID",
"type": "string"
},
"search": {
"description": "Search feedback content for specific text",
"type": "string"
},
"sentiment": {
"description": "Filter by sentiment analysis result",
"enum": [
"POSITIVE",
"NEGATIVE",
"NEUTRAL"
],
"type": "string"
},
"status": {
"description": "Filter by feedback status",
"enum": [
"PENDING",
"REVIEWED",
"DONE"
],
"type": "string"
}
},
"type": "object"
}