create-intake-issue
Create new intake issues in Plane projects to capture and organize incoming tasks, ideas, or requests with customizable priority levels and descriptions.
Instructions
Create a new intake/inbox issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description_html | No | HTML description of the issue (optional) | |
name | Yes | Title of the intake issue | |
priority | No | Priority of the issue (urgent, high, medium, low, none) | |
project_id | Yes | ID of the project to create intake issue in |
Input Schema (JSON Schema)
{
"properties": {
"description_html": {
"description": "HTML description of the issue (optional)",
"type": "string"
},
"name": {
"description": "Title of the intake issue",
"type": "string"
},
"priority": {
"description": "Priority of the issue (urgent, high, medium, low, none)",
"enum": [
"urgent",
"high",
"medium",
"low",
"none"
],
"type": "string"
},
"project_id": {
"description": "ID of the project to create intake issue in",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}