get_bug_reports
Retrieve bug reports from FeedbackBasket projects with filtering by project, status, severity, or search terms to identify and analyze software issues.
Instructions
Get bug reports specifically from your FeedbackBasket projects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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 bug report content for specific text | |
severity | No | Filter by computed severity (based on sentiment: negative=high, neutral=medium, positive=low) | |
status | No | Filter by bug status |
Input Schema (JSON Schema)
{
"properties": {
"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 bug report content for specific text",
"type": "string"
},
"severity": {
"description": "Filter by computed severity (based on sentiment: negative=high, neutral=medium, positive=low)",
"enum": [
"high",
"medium",
"low"
],
"type": "string"
},
"status": {
"description": "Filter by bug status",
"enum": [
"PENDING",
"REVIEWED",
"DONE"
],
"type": "string"
}
},
"type": "object"
}