Linear

by tacticlaunch
Verified

linear_assignIssue

Assign an issue to a user

Input Schema

NameRequiredDescriptionDefault
assigneeIdYesID of the user to assign the issue to, or null to unassign
issueIdYesID or identifier of the issue to assign (e.g., ABC-123)

Input Schema (JSON Schema)

{ "properties": { "assigneeId": { "description": "ID of the user to assign the issue to, or null to unassign", "type": "string" }, "issueId": { "description": "ID or identifier of the issue to assign (e.g., ABC-123)", "type": "string" } }, "required": [ "issueId", "assigneeId" ], "type": "object" }