get-intake-issue
Retrieve detailed information about a specific intake issue from a Plane project using project and issue identifiers.
Instructions
Get detailed information about a specific intake issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the intake issue to retrieve | |
| project_id | Yes | ID of the project containing the intake issue |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the intake issue to retrieve",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the intake issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}