Linear is a leading project management and issue tracking platform that helps teams plan, track, and manage their work effectively. As a modern project management tool, Linear has become increasingly popular among software development teams and project management professionals for its streamlined interface and powerful features.
Linear provides a comprehensive set of tools for managing complex projects through its flexible and customizable workflow system. With its robust API and integration capabilities, Linear enables teams to streamline their development processes and maintain clear visibility of project progress.
Key features of Linear include:
- Agile Project Management: Support for Scrum and Kanban methodologies with customizable boards and workflows
- Issue Tracking: Sophisticated tracking system for bugs, stories, epics, and tasks with detailed reporting
- Workflow Automation: Powerful automation rules to streamline repetitive tasks and processes
- Advanced Search: Complex filtering and reporting capabilities for efficient issue management
In Sim, the Linear integration allows your agents to seamlessly interact with your project management workflow. This creates opportunities for automated issue creation, updates, and tracking as part of your AI workflows. The integration enables agents to read existing issues and create new ones programmatically, facilitating automated project management tasks and ensuring that important information is properly tracked and documented. By connecting Sim with Linear, you can build intelligent agents that maintain project visibility while automating routine project management tasks, enhancing team productivity and ensuring consistent project tracking.
Integrate Linear into the workflow. Can manage issues, comments, projects, labels, workflow states, cycles, attachments, and more. Can also trigger workflows based on Linear webhook events.
Fetch and filter issues from Linear
| Parameter | Type | Required | Description |
|---|
teamId | string | No | Linear team ID to filter by |
projectId | string | No | Linear project ID to filter by |
assigneeId | string | No | User ID to filter by assignee |
stateId | string | No | Workflow state ID to filter by status |
priority | number | No | Priority to filter by (0=No priority, 1=Urgent, 2=High, 3=Normal, 4=Low) |
labelIds | array | No | Array of label IDs to filter by |
createdAfter | string | No | Filter issues created after this date (ISO 8601 format) |
updatedAfter | string | No | Filter issues updated after this date (ISO 8601 format) |
includeArchived | boolean | No | Include archived issues (default: false) |
first | number | No | Number of issues to return (default: 50, max: 250) |
after | string | No | Pagination cursor for next page |
orderBy | string | No | Sort order: "createdAt" or "updatedAt" (default: "updatedAt") |
| Parameter | Type | Description |
|---|
issues | array | Array of filtered issues from Linear |
Get a single issue by ID from Linear with full details
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID |
| Parameter | Type | Description |
|---|
issue | object | The issue with full details |
Create a new issue in Linear
| Parameter | Type | Required | Description |
|---|
teamId | string | Yes | Linear team ID |
projectId | string | No | Linear project ID |
title | string | Yes | Issue title |
description | string | No | Issue description |
stateId | string | No | Workflow state ID (status) |
assigneeId | string | No | User ID to assign the issue to |
priority | number | No | Priority (0=No priority, 1=Urgent, 2=High, 3=Normal, 4=Low) |
estimate | number | No | Estimate in points |
labelIds | array | No | Array of label IDs to set on the issue |
cycleId | string | No | Cycle ID to assign the issue to |
parentId | string | No | Parent issue ID (for creating sub-issues) |
dueDate | string | No | Due date in ISO 8601 format (date only: YYYY-MM-DD) |
subscriberIds | array | No | Array of user IDs to subscribe to the issue |
projectMilestoneId | string | No | Project milestone ID to associate with the issue |
| Parameter | Type | Description |
|---|
issue | object | The created issue with all its properties |
Update an existing issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID to update |
title | string | No | New issue title |
description | string | No | New issue description |
stateId | string | No | Workflow state ID (status) |
assigneeId | string | No | User ID to assign the issue to |
priority | number | No | Priority (0=No priority, 1=Urgent, 2=High, 3=Normal, 4=Low) |
estimate | number | No | Estimate in points |
labelIds | array | No | Array of label IDs to set on the issue (replaces all existing labels) |
projectId | string | No | Project ID to move the issue to |
cycleId | string | No | Cycle ID to assign the issue to |
parentId | string | No | Parent issue ID (for making this a sub-issue) |
dueDate | string | No | Due date in ISO 8601 format (date only: YYYY-MM-DD) |
addedLabelIds | array | No | Array of label IDs to add to the issue (without replacing existing labels) |
removedLabelIds | array | No | Array of label IDs to remove from the issue |
| Parameter | Type | Description |
|---|
issue | object | The updated issue |
Archive an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID to archive |
| Parameter | Type | Description |
|---|
success | boolean | Whether the archive operation was successful |
issueId | string | The ID of the archived issue |
Unarchive (restore) an archived issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID to unarchive |
| Parameter | Type | Description |
|---|
success | boolean | Whether the unarchive operation was successful |
issueId | string | The ID of the unarchived issue |
Delete (trash) an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the delete operation was successful |
Search for issues in Linear using full-text search
| Parameter | Type | Required | Description |
|---|
query | string | Yes | Search query string |
teamId | string | No | Filter by team ID |
includeArchived | boolean | No | Include archived issues in search results |
first | number | No | Number of results to return (default: 50) |
| Parameter | Type | Description |
|---|
issues | array | Array of matching issues |
Add a label to an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID |
labelId | string | Yes | Label ID to add to the issue |
| Parameter | Type | Description |
|---|
success | boolean | Whether the label was successfully added |
issueId | string | The ID of the issue |
Remove a label from an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID |
labelId | string | Yes | Label ID to remove from the issue |
| Parameter | Type | Description |
|---|
success | boolean | Whether the label was successfully removed |
issueId | string | The ID of the issue |
Add a comment to an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID to comment on |
body | string | Yes | Comment text (supports Markdown) |
| Parameter | Type | Description |
|---|
comment | object | The created comment |
Edit a comment in Linear
| Parameter | Type | Required | Description |
|---|
commentId | string | Yes | Comment ID to update |
body | string | No | New comment text (supports Markdown) |
| Parameter | Type | Description |
|---|
comment | object | The updated comment |
Delete a comment from Linear
| Parameter | Type | Required | Description |
|---|
commentId | string | Yes | Comment ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the delete operation was successful |
List all comments on an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Linear issue ID |
first | number | No | Number of comments to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
comments | array | Array of comments on the issue |
List projects in Linear with optional filtering
| Parameter | Type | Required | Description |
|---|
teamId | string | No | Filter by team ID |
includeArchived | boolean | No | Include archived projects |
first | number | No | Number of projects to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
projects | array | Array of projects |
Get a single project by ID from Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Linear project ID |
| Parameter | Type | Description |
|---|
project | object | The project with full details |
Create a new project in Linear
| Parameter | Type | Required | Description |
|---|
teamId | string | Yes | Team ID to create the project in |
name | string | Yes | Project name |
description | string | No | Project description |
leadId | string | No | User ID of the project lead |
startDate | string | No | Project start date (ISO format) |
targetDate | string | No | Project target date (ISO format) |
priority | number | No | Project priority (0-4) |
| Parameter | Type | Description |
|---|
project | object | The created project |
Update an existing project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID to update |
name | string | No | New project name |
description | string | No | New project description |
state | string | No | Project state (planned, started, completed, canceled) |
leadId | string | No | User ID of the project lead |
startDate | string | No | Project start date (ISO format: YYYY-MM-DD) |
targetDate | string | No | Project target date (ISO format: YYYY-MM-DD) |
priority | number | No | Project priority (0=No priority, 1=Urgent, 2=High, 3=Normal, 4=Low) |
| Parameter | Type | Description |
|---|
project | object | The updated project |
Archive a project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID to archive |
| Parameter | Type | Description |
|---|
success | boolean | Whether the archive operation was successful |
projectId | string | The ID of the archived project |
List all users in the Linear workspace
| Parameter | Type | Required | Description |
|---|
includeDisabled | boolean | No | Include disabled/inactive users |
first | number | No | Number of users to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
users | array | Array of workspace users |
List all teams in the Linear workspace
| Parameter | Type | Required | Description |
|---|
first | number | No | Number of teams to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
teams | array | Array of teams |
Get the currently authenticated user (viewer) information
| Parameter | Type | Required | Description |
|---|
| Parameter | Type | Description |
|---|
user | object | The currently authenticated user |
List all labels in Linear workspace or team
| Parameter | Type | Required | Description |
|---|
teamId | string | No | Filter by team ID |
first | number | No | Number of labels to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
labels | array | Array of labels |
Create a new label in Linear
| Parameter | Type | Required | Description |
|---|
name | string | Yes | Label name |
color | string | No | Label color (hex format, e.g., "#ff0000") |
description | string | No | Label description |
teamId | string | No | Team ID (if omitted, creates workspace label) |
| Parameter | Type | Description |
|---|
label | object | The created label |
Update an existing label in Linear
| Parameter | Type | Required | Description |
|---|
labelId | string | Yes | Label ID to update |
name | string | No | New label name |
color | string | No | New label color (hex format) |
description | string | No | New label description |
| Parameter | Type | Description |
|---|
label | object | The updated label |
Archive a label in Linear
| Parameter | Type | Required | Description |
|---|
labelId | string | Yes | Label ID to archive |
| Parameter | Type | Description |
|---|
success | boolean | Whether the archive operation was successful |
labelId | string | The ID of the archived label |
List all workflow states (statuses) in Linear
| Parameter | Type | Required | Description |
|---|
teamId | string | No | Filter by team ID |
first | number | No | Number of states to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
states | array | Array of workflow states |
Create a new workflow state (status) in Linear
| Parameter | Type | Required | Description |
|---|
teamId | string | Yes | Team ID to create the state in |
name | string | Yes | State name (e.g., "In Review") |
color | string | No | State color (hex format) |
type | string | Yes | State type: "backlog", "unstarted", "started", "completed", or "canceled" |
description | string | No | State description |
position | number | No | Position in the workflow |
| Parameter | Type | Description |
|---|
state | object | The created workflow state |
Update an existing workflow state in Linear
| Parameter | Type | Required | Description |
|---|
stateId | string | Yes | Workflow state ID to update |
name | string | No | New state name |
color | string | No | New state color (hex format) |
description | string | No | New state description |
position | number | No | New position in workflow |
| Parameter | Type | Description |
|---|
state | object | The updated workflow state |
List cycles (sprints/iterations) in Linear
| Parameter | Type | Required | Description |
|---|
teamId | string | No | Filter by team ID |
first | number | No | Number of cycles to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
cycles | array | Array of cycles |
Get a single cycle by ID from Linear
| Parameter | Type | Required | Description |
|---|
cycleId | string | Yes | Cycle ID |
| Parameter | Type | Description |
|---|
cycle | object | The cycle with full details |
Create a new cycle (sprint/iteration) in Linear
| Parameter | Type | Required | Description |
|---|
teamId | string | Yes | Team ID to create the cycle in |
startsAt | string | Yes | Cycle start date (ISO format) |
endsAt | string | Yes | Cycle end date (ISO format) |
name | string | No | Cycle name (optional, will be auto-generated if not provided) |
| Parameter | Type | Description |
|---|
cycle | object | The created cycle |
Get the currently active cycle for a team
| Parameter | Type | Required | Description |
|---|
teamId | string | Yes | Team ID |
| Parameter | Type | Description |
|---|
cycle | object | The active cycle (null if no active cycle) |
Add an attachment to an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Issue ID to attach to |
url | string | Yes | URL of the attachment |
title | string | Yes | Attachment title |
subtitle | string | No | Attachment subtitle/description |
| Parameter | Type | Description |
|---|
attachment | object | The created attachment |
List all attachments on an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Issue ID |
first | number | No | Number of attachments to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
attachments | array | Array of attachments |
Update an attachment metadata in Linear
| Parameter | Type | Required | Description |
|---|
attachmentId | string | Yes | Attachment ID to update |
title | string | Yes | New attachment title |
subtitle | string | No | New attachment subtitle |
| Parameter | Type | Description |
|---|
attachment | object | The updated attachment |
Delete an attachment from Linear
| Parameter | Type | Required | Description |
|---|
attachmentId | string | Yes | Attachment ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the delete operation was successful |
Link two issues together in Linear (blocks, relates to, duplicates)
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Source issue ID |
relatedIssueId | string | Yes | Target issue ID to link to |
type | string | Yes | Relation type: "blocks", "duplicate", or "related". Note: When creating "blocks" from A to B, the inverse relation (B blocked by A) is automatically created. |
| Parameter | Type | Description |
|---|
relation | object | The created issue relation |
List all relations (dependencies) for an issue in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | Yes | Issue ID |
first | number | No | Number of relations to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
relations | array | Array of issue relations |
Remove a relation between two issues in Linear
| Parameter | Type | Required | Description |
|---|
relationId | string | Yes | Relation ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the delete operation was successful |
Bookmark an issue, project, cycle, or label in Linear
| Parameter | Type | Required | Description |
|---|
issueId | string | No | Issue ID to favorite |
projectId | string | No | Project ID to favorite |
cycleId | string | No | Cycle ID to favorite |
labelId | string | No | Label ID to favorite |
| Parameter | Type | Description |
|---|
favorite | object | The created favorite |
List all bookmarked items for the current user in Linear
| Parameter | Type | Required | Description |
|---|
first | number | No | Number of favorites to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
favorites | array | Array of favorited items |
Post a status update for a project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID to post update for |
body | string | Yes | Update message (supports Markdown) |
health | string | No | Project health: "onTrack", "atRisk", or "offTrack" |
| Parameter | Type | Description |
|---|
update | object | The created project update |
List all status updates for a project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID |
first | number | No | Number of updates to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
updates | array | Array of project updates |
Add an external link to a project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID to add link to |
url | string | Yes | URL of the external link |
label | string | No | Link label/title |
| Parameter | Type | Description |
|---|
link | object | The created project link |
List notifications for the current user in Linear
| Parameter | Type | Required | Description |
|---|
first | number | No | Number of notifications to return (default: 50) |
after | string | No | Cursor for pagination |
| Parameter | Type | Description |
|---|
notifications | array | Array of notifications |
Mark a notification as read or unread in Linear
| Parameter | Type | Required | Description |
|---|
notificationId | string | Yes | Notification ID to update |
readAt | string | No | Timestamp to mark as read (ISO format). Pass null or omit to mark as unread |
| Parameter | Type | Description |
|---|
notification | object | The updated notification |
Create a new customer in Linear
| Parameter | Type | Required | Description |
|---|
name | string | Yes | Customer name |
domains | array | No | Domains associated with this customer |
externalIds | array | No | External IDs from other systems |
logoUrl | string | No | Customer's logo URL |
ownerId | string | No | ID of the user who owns this customer |
revenue | number | No | Annual revenue from this customer |
size | number | No | Size of the customer organization |
statusId | string | No | Customer status ID |
tierId | string | No | Customer tier ID |
| Parameter | Type | Description |
|---|
customer | object | The created customer |
List all customers in Linear
| Parameter | Type | Required | Description |
|---|
first | number | No | Number of customers to return (default: 50) |
after | string | No | Cursor for pagination |
includeArchived | boolean | No | Include archived customers (default: false) |
| Parameter | Type | Description |
|---|
customers | array | Array of customers |
Create a customer request (need) in Linear. Assign to customer, set urgency (priority: 0 = Not important, 1 = Important), and optionally link to an issue.
| Parameter | Type | Required | Description |
|---|
customerId | string | Yes | Customer ID to assign this request to |
body | string | No | Description of the customer request |
priority | number | No | Urgency level: 0 = Not important, 1 = Important (default: 0) |
issueId | string | No | Issue ID to link this request to |
projectId | string | No | Project ID to link this request to |
| Parameter | Type | Description |
|---|
customerNeed | object | The created customer request |
Update a customer request (need) in Linear. Can change urgency, description, customer assignment, and linked issue.
| Parameter | Type | Required | Description |
|---|
customerNeedId | string | Yes | Customer request ID to update |
body | string | No | Updated description of the customer request |
priority | number | No | Updated urgency level: 0 = Not important, 1 = Important |
customerId | string | No | New customer ID to assign this request to |
issueId | string | No | New issue ID to link this request to |
projectId | string | No | New project ID to link this request to |
| Parameter | Type | Description |
|---|
customerNeed | object | The updated customer request |
List all customer requests (needs) in Linear
| Parameter | Type | Required | Description |
|---|
first | number | No | Number of customer requests to return (default: 50) |
after | string | No | Cursor for pagination |
includeArchived | boolean | No | Include archived customer requests (default: false) |
| Parameter | Type | Description |
|---|
customerNeeds | array | Array of customer requests |
Get a single customer by ID in Linear
| Parameter | Type | Required | Description |
|---|
customerId | string | Yes | Customer ID to retrieve |
| Parameter | Type | Description |
|---|
customer | object | The customer data |
Update a customer in Linear
| Parameter | Type | Required | Description |
|---|
customerId | string | Yes | Customer ID to update |
name | string | No | Updated customer name |
domains | array | No | Updated domains |
externalIds | array | No | Updated external IDs |
logoUrl | string | No | Updated logo URL |
ownerId | string | No | Updated owner user ID |
revenue | number | No | Updated annual revenue |
size | number | No | Updated organization size |
statusId | string | No | Updated customer status ID |
tierId | string | No | Updated customer tier ID |
| Parameter | Type | Description |
|---|
customer | object | The updated customer |
Delete a customer in Linear
| Parameter | Type | Required | Description |
|---|
customerId | string | Yes | Customer ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
Merge two customers in Linear by moving all data from source to target
| Parameter | Type | Required | Description |
|---|
sourceCustomerId | string | Yes | Source customer ID (will be deleted after merge) |
targetCustomerId | string | Yes | Target customer ID (will receive all data) |
| Parameter | Type | Description |
|---|
customer | object | The merged target customer |
Create a new customer status in Linear
| Parameter | Type | Required | Description |
|---|
name | string | Yes | Customer status name |
color | string | Yes | Status color (hex code) |
displayName | string | No | Display name for the status |
description | string | No | Status description |
position | number | No | Position in status list |
| Parameter | Type | Description |
|---|
customerStatus | object | The created customer status |
Update a customer status in Linear
| Parameter | Type | Required | Description |
|---|
statusId | string | Yes | Customer status ID to update |
name | string | No | Updated status name |
color | string | No | Updated status color |
displayName | string | No | Updated display name |
description | string | No | Updated description |
position | number | No | Updated position |
| Parameter | Type | Description |
|---|
customerStatus | object | The updated customer status |
Delete a customer status in Linear
| Parameter | Type | Required | Description |
|---|
statusId | string | Yes | Customer status ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
List all customer statuses in Linear
| Parameter | Type | Required | Description |
|---|
| Parameter | Type | Description |
|---|
customerStatuses | array | List of customer statuses |
Create a new customer tier in Linear
| Parameter | Type | Required | Description |
|---|
name | string | Yes | Customer tier name |
color | string | Yes | Tier color (hex code) |
displayName | string | No | Display name for the tier |
description | string | No | Tier description |
position | number | No | Position in tier list |
| Parameter | Type | Description |
|---|
customerTier | object | The created customer tier |
Update a customer tier in Linear
| Parameter | Type | Required | Description |
|---|
tierId | string | Yes | Customer tier ID to update |
name | string | No | Updated tier name |
color | string | No | Updated tier color |
displayName | string | No | Updated display name |
description | string | No | Updated description |
position | number | No | Updated position |
| Parameter | Type | Description |
|---|
customerTier | object | The updated customer tier |
Delete a customer tier in Linear
| Parameter | Type | Required | Description |
|---|
tierId | string | Yes | Customer tier ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
List all customer tiers in Linear
| Parameter | Type | Required | Description |
|---|
| Parameter | Type | Description |
|---|
customerTiers | array | List of customer tiers |
Delete a project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
Create a new project label in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | The project for this label |
name | string | Yes | Project label name |
color | string | No | Label color (hex code) |
description | string | No | Label description |
isGroup | boolean | No | Whether this is a label group |
parentId | string | No | Parent label group ID |
| Parameter | Type | Description |
|---|
projectLabel | object | The created project label |
Update a project label in Linear
| Parameter | Type | Required | Description |
|---|
labelId | string | Yes | Project label ID to update |
name | string | No | Updated label name |
color | string | No | Updated label color |
description | string | No | Updated description |
| Parameter | Type | Description |
|---|
projectLabel | object | The updated project label |
Delete a project label in Linear
| Parameter | Type | Required | Description |
|---|
labelId | string | Yes | Project label ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
List all project labels in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | No | Optional project ID to filter labels for a specific project |
| Parameter | Type | Description |
|---|
projectLabels | array | List of project labels |
Add a label to a project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID |
labelId | string | Yes | Label ID to add |
| Parameter | Type | Description |
|---|
success | boolean | Whether the label was added successfully |
projectId | string | The project ID |
Remove a label from a project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID |
labelId | string | Yes | Label ID to remove |
| Parameter | Type | Description |
|---|
success | boolean | Whether the label was removed successfully |
projectId | string | The project ID |
Create a new project milestone in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID |
name | string | Yes | Milestone name |
description | string | No | Milestone description |
targetDate | string | No | Target date (ISO 8601) |
| Parameter | Type | Description |
|---|
projectMilestone | object | The created project milestone |
Update a project milestone in Linear
| Parameter | Type | Required | Description |
|---|
milestoneId | string | Yes | Project milestone ID to update |
name | string | No | Updated milestone name |
description | string | No | Updated description |
targetDate | string | No | Updated target date (ISO 8601) |
| Parameter | Type | Description |
|---|
projectMilestone | object | The updated project milestone |
Delete a project milestone in Linear
| Parameter | Type | Required | Description |
|---|
milestoneId | string | Yes | Project milestone ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
List all milestones for a project in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | Project ID to list milestones for |
| Parameter | Type | Description |
|---|
projectMilestones | array | List of project milestones |
Create a new project status in Linear
| Parameter | Type | Required | Description |
|---|
projectId | string | Yes | The project to create the status for |
name | string | Yes | Project status name |
color | string | Yes | Status color (hex code) |
description | string | No | Status description |
indefinite | boolean | No | Whether the status is indefinite |
position | number | No | Position in status list |
| Parameter | Type | Description |
|---|
projectStatus | object | The created project status |
Update a project status in Linear
| Parameter | Type | Required | Description |
|---|
statusId | string | Yes | Project status ID to update |
name | string | No | Updated status name |
color | string | No | Updated status color |
description | string | No | Updated description |
indefinite | boolean | No | Updated indefinite flag |
position | number | No | Updated position |
| Parameter | Type | Description |
|---|
projectStatus | object | The updated project status |
Delete a project status in Linear
| Parameter | Type | Required | Description |
|---|
statusId | string | Yes | Project status ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
List all project statuses in Linear
| Parameter | Type | Required | Description |
|---|
| Parameter | Type | Description |
|---|
projectStatuses | array | List of project statuses |
- Category:
tools
- Type:
linear