linear_assignIssue
Assign or unassign an issue to a specific user in the Linear project management system. Provide the issue ID and assignee ID to manage task ownership efficiently.
Instructions
Assign an issue to a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assigneeId | Yes | ID of the user to assign the issue to, or null to unassign | |
issueId | Yes | ID 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"
}