linear_transferIssue
Move an issue to a different team within the Linear project management system by specifying the issue ID and the target team ID.
Instructions
Transfer an issue to another team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | ID or identifier of the issue to transfer (e.g., ABC-123) | |
teamId | Yes | ID of the team to transfer the issue to |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "ID or identifier of the issue to transfer (e.g., ABC-123)",
"type": "string"
},
"teamId": {
"description": "ID of the team to transfer the issue to",
"type": "string"
}
},
"required": [
"issueId",
"teamId"
],
"type": "object"
}