update_feature_request
Modify the status or title of a feature request in the Cuti-E admin system to track progress and organize feedback.
Instructions
Update the status or title of a feature request.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request_id | Yes | Feature request ID (freq_...) | |
| status | No | New status: new, acknowledged, planned, completed, declined | |
| title | No | New title for the feature request |
Implementation Reference
- index.js:518-524 (handler)The handler logic for 'update_feature_request' that processes the request by extracting 'status' and 'title' from arguments and sending a PATCH request to the API.
case "update_feature_request": { const body = {}; if (args.status !== undefined) body.status = args.status; if (args.title !== undefined) body.title = args.title; result = await apiRequest("PATCH", `/v1/feature-requests/${args.request_id}`, { body }); break; } - index.js:351-373 (schema)The input schema definition for 'update_feature_request', specifying the 'request_id', 'status', and 'title' properties.
{ name: "update_feature_request", description: "Update the status or title of a feature request.", inputSchema: { type: "object", properties: { request_id: { type: "string", description: "Feature request ID (freq_...)", }, status: { type: "string", description: "New status: new, acknowledged, planned, completed, declined", }, title: { type: "string", description: "New title for the feature request", }, }, required: ["request_id"], }, },