get_issue
Retrieve detailed information about a specific project issue in Zoho Projects using the project ID and issue ID.
Instructions
Get details of a specific issue
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID | |
| issue_id | Yes | Issue ID |
Implementation Reference
- src/index.ts:793-800 (handler)The handler function that executes the 'get_issue' tool by calling the Zoho API to retrieve specific issue details and returns a formatted text response.private async getIssue(projectId: string, issueId: string) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${projectId}/issues/${issueId}` ); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
- src/http-server.ts:796-803 (handler)Identical handler function for the 'get_issue' tool in the HTTP server variant.private async getIssue(projectId: string, issueId: string) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${projectId}/issues/${issueId}` ); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
- src/index.ts:400-411 (registration)Registration of the 'get_issue' tool in the ListTools response, including name, description, and input schema.{ name: "get_issue", description: "Get details of a specific issue", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, issue_id: { type: "string", description: "Issue ID" }, }, required: ["project_id", "issue_id"], }, },
- src/http-server.ts:403-414 (registration)Tool registration in the HTTP server variant's ListTools response.{ name: "get_issue", description: "Get details of a specific issue", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, issue_id: { type: "string", description: "Issue ID" }, }, required: ["project_id", "issue_id"], }, },