get_recently_updated_defect_list
Retrieve a list of recently updated defects filtered by status and date range to monitor and manage issue resolution effectively within the MCP-FEISHU server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endDate | Yes | ||
| startDate | Yes | ||
| status | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"type": "number"
},
"startDate": {
"type": "number"
},
"status": {
"type": "string"
}
},
"required": [
"status",
"startDate",
"endDate"
],
"type": "object"
}