Linear

by tacticlaunch
Verified

linear_createIssue

Create a new issue in Linear

Input Schema

NameRequiredDescriptionDefault
assigneeIdNoID of the user to assign the issue to
cycleIdNoID of the cycle to add the issue to
descriptionNoDescription of the issue (Markdown supported)
dueDateNoThe date at which the issue is due (YYYY-MM-DD format)
estimateNoThe estimated complexity/points for the issue
labelIdsNoIDs of the labels to attach to the issue
parentIdNoID of the parent issue (to create as a sub-task)
priorityNoPriority of the issue (0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low)
projectIdNoID of the project the issue belongs to
sortOrderNoThe position of the issue in relation to other issues
stateIdNoID of the workflow state for the issue
subscriberIdsNoIDs of the users to subscribe to the issue
teamIdYesID of the team the issue belongs to
templateIdNoID of a template to use for creating the issue
titleYesTitle of the issue

Input Schema (JSON Schema)

{ "properties": { "assigneeId": { "description": "ID of the user to assign the issue to", "type": "string" }, "cycleId": { "description": "ID of the cycle to add the issue to", "type": "string" }, "description": { "description": "Description of the issue (Markdown supported)", "type": "string" }, "dueDate": { "description": "The date at which the issue is due (YYYY-MM-DD format)", "type": "string" }, "estimate": { "description": "The estimated complexity/points for the issue", "type": "number" }, "labelIds": { "description": "IDs of the labels to attach to the issue", "items": { "type": "string" }, "type": "array" }, "parentId": { "description": "ID of the parent issue (to create as a sub-task)", "type": "string" }, "priority": { "description": "Priority of the issue (0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low)", "type": "number" }, "projectId": { "description": "ID of the project the issue belongs to", "type": "string" }, "sortOrder": { "description": "The position of the issue in relation to other issues", "type": "number" }, "stateId": { "description": "ID of the workflow state for the issue", "type": "string" }, "subscriberIds": { "description": "IDs of the users to subscribe to the issue", "items": { "type": "string" }, "type": "array" }, "teamId": { "description": "ID of the team the issue belongs to", "type": "string" }, "templateId": { "description": "ID of a template to use for creating the issue", "type": "string" }, "title": { "description": "Title of the issue", "type": "string" } }, "required": [ "title", "teamId" ], "type": "object" }