Linear

by tacticlaunch
Verified

linear_transferIssue

Transfer an issue to another team

Input Schema

NameRequiredDescriptionDefault
issueIdYesID or identifier of the issue to transfer (e.g., ABC-123)
teamIdYesID 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" }