ZippyVendas

Linear

Interagir com issues, projetos e mais do Linear

Linear é uma plataforma líder de gerenciamento de projetos e rastreamento de issues que ajuda equipes a planejar, rastrear e gerenciar seu trabalho de forma eficaz. Como uma ferramenta moderna de gerenciamento de projetos, o Linear se tornou cada vez mais popular entre equipes de desenvolvimento de software e profissionais de gerenciamento de projetos por sua interface simplificada e recursos poderosos.

O Linear fornece um conjunto abrangente de ferramentas para gerenciar projetos complexos através de seu sistema de workflow flexível e personalizável. Com sua API robusta e capacidades de integração, o Linear permite que equipes simplifiquem seus processos de desenvolvimento e mantenham visibilidade clara do progresso do projeto.

Recursos principais do Linear incluem:

  • Gerenciamento de Projetos Ágeis: Suporte para metodologias Scrum e Kanban com quadros e workflows personalizáveis
  • Rastreamento de Issues: Sistema sofisticado de rastreamento para bugs, histórias, épicos e tarefas com relatórios detalhados
  • Automação de Workflow: Regras de automação poderosas para simplificar tarefas e processos repetitivos
  • Busca Avançada: Capacidades complexas de filtragem e relatórios para gerenciamento eficiente de issues

No ZippyVendas, a integração do Linear permite que seus agentes interajam perfeitamente com seu workflow de gerenciamento de projetos. Isso cria oportunidades para criação automatizada de issues, atualizações e rastreamento como parte de seus workflows de IA. A integração permite que agentes leiam issues existentes e criem novas programaticamente, facilitando tarefas automatizadas de gerenciamento de projetos e garantindo que informações importantes sejam devidamente rastreadas e documentadas. Ao conectar o ZippyVendas com o Linear, você pode construir agentes inteligentes que mantêm visibilidade do projeto enquanto automatizam tarefas rotineiras de gerenciamento de projetos, aumentando a produtividade da equipe e garantindo rastreamento consistente de projetos.

Instruções de Uso

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.

Ferramentas

linear_read_issues

Fetch and filter issues from Linear

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringNãoLinear team ID to filter by
projectIdstringNãoLinear project ID to filter by
assigneeIdstringNãoUser ID to filter by assignee
stateIdstringNãoWorkflow state ID to filter by status
prioritynumberNãoPriority to filter by (0=No priority, 1=Urgent, 2=High, 3=Normal, 4=Low)
labelIdsarrayNãoArray of label IDs to filter by
createdAfterstringNãoFilter issues created after this date (ISO 8601 format)
updatedAfterstringNãoFilter issues updated after this date (ISO 8601 format)
includeArchivedbooleanNãoInclude archived issues (default: false)
firstnumberNãoNumber of issues to return (default: 50, max: 250)
afterstringNãoPagination cursor for next page
orderBystringNãoSort order: "createdAt" or "updatedAt" (default: "updatedAt")

Saída

ParameterTypeDescription
issuesarrayArray of filtered issues from Linear

linear_get_issue

Get a single issue by ID from Linear with full details

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID

Saída

ParameterTypeDescription
issueobjectThe issue with full details

linear_create_issue

Create a new issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringSimLinear team ID
projectIdstringNãoLinear project ID
titlestringSimIssue title
descriptionstringNãoIssue description
stateIdstringNãoWorkflow state ID (status)
assigneeIdstringNãoUser ID to assign the issue to
prioritynumberNãoPriority (0=No priority, 1=Urgent, 2=High, 3=Normal, 4=Low)
estimatenumberNãoEstimate in points
labelIdsarrayNãoArray of label IDs to set on the issue
cycleIdstringNãoCycle ID to assign the issue to
parentIdstringNãoParent issue ID (for creating sub-issues)
dueDatestringNãoDue date in ISO 8601 format (date only: YYYY-MM-DD)
subscriberIdsarrayNãoArray of user IDs to subscribe to the issue
projectMilestoneIdstringNãoProject milestone ID to associate with the issue

Saída

ParameterTypeDescription
issueobjectThe created issue with all its properties

linear_update_issue

Update an existing issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID to update
titlestringNãoNew issue title
descriptionstringNãoNew issue description
stateIdstringNãoWorkflow state ID (status)
assigneeIdstringNãoUser ID to assign the issue to
prioritynumberNãoPriority (0=No priority, 1=Urgent, 2=High, 3=Normal, 4=Low)
estimatenumberNãoEstimate in points
labelIdsarrayNãoArray of label IDs to set on the issue (replaces all existing labels)
projectIdstringNãoProject ID to move the issue to
cycleIdstringNãoCycle ID to assign the issue to
parentIdstringNãoParent issue ID (for making this a sub-issue)
dueDatestringNãoDue date in ISO 8601 format (date only: YYYY-MM-DD)
addedLabelIdsarrayNãoArray of label IDs to add to the issue (without replacing existing labels)
removedLabelIdsarrayNãoArray of label IDs to remove from the issue

Saída

ParameterTypeDescription
issueobjectThe updated issue

linear_archive_issue

Archive an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID to archive

Saída

ParameterTypeDescription
successbooleanWhether the archive operation was successful
issueIdstringThe ID of the archived issue

linear_unarchive_issue

Unarchive (restore) an archived issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID to unarchive

Saída

ParameterTypeDescription
successbooleanWhether the unarchive operation was successful
issueIdstringThe ID of the unarchived issue

linear_delete_issue

Delete (trash) an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the delete operation was successful

linear_search_issues

Search for issues in Linear using full-text search

Entrada

ParâmetroTipoObrigatórioDescrição
querystringSimSearch query string
teamIdstringNãoFilter by team ID
includeArchivedbooleanNãoInclude archived issues in search results
firstnumberNãoNumber of results to return (default: 50)

Saída

ParameterTypeDescription
issuesarrayArray of matching issues

linear_add_label_to_issue

Add a label to an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID
labelIdstringSimLabel ID to add to the issue

Saída

ParameterTypeDescription
successbooleanWhether the label was successfully added
issueIdstringThe ID of the issue

linear_remove_label_from_issue

Remove a label from an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID
labelIdstringSimLabel ID to remove from the issue

Saída

ParameterTypeDescription
successbooleanWhether the label was successfully removed
issueIdstringThe ID of the issue

linear_create_comment

Add a comment to an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID to comment on
bodystringSimComment text (supports Markdown)

Saída

ParameterTypeDescription
commentobjectThe created comment

linear_update_comment

Edit a comment in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
commentIdstringSimComment ID to update
bodystringNãoNew comment text (supports Markdown)

Saída

ParameterTypeDescription
commentobjectThe updated comment

linear_delete_comment

Delete a comment from Linear

Entrada

ParâmetroTipoObrigatórioDescrição
commentIdstringSimComment ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the delete operation was successful

linear_list_comments

List all comments on an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimLinear issue ID
firstnumberNãoNumber of comments to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
commentsarrayArray of comments on the issue

linear_list_projects

List projects in Linear with optional filtering

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringNãoFilter by team ID
includeArchivedbooleanNãoInclude archived projects
firstnumberNãoNumber of projects to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
projectsarrayArray of projects

linear_get_project

Get a single project by ID from Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimLinear project ID

Saída

ParameterTypeDescription
projectobjectThe project with full details

linear_create_project

Create a new project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringSimTeam ID to create the project in
namestringSimProject name
descriptionstringNãoProject description
leadIdstringNãoUser ID of the project lead
startDatestringNãoProject start date (ISO format)
targetDatestringNãoProject target date (ISO format)
prioritynumberNãoProject priority (0-4)

Saída

ParameterTypeDescription
projectobjectThe created project

linear_update_project

Update an existing project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID to update
namestringNãoNew project name
descriptionstringNãoNew project description
statestringNãoProject state (planned, started, completed, canceled)
leadIdstringNãoUser ID of the project lead
startDatestringNãoProject start date (ISO format: YYYY-MM-DD)
targetDatestringNãoProject target date (ISO format: YYYY-MM-DD)
prioritynumberNãoProject priority (0=No priority, 1=Urgent, 2=High, 3=Normal, 4=Low)

Saída

ParameterTypeDescription
projectobjectThe updated project

linear_archive_project

Archive a project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID to archive

Saída

ParameterTypeDescription
successbooleanWhether the archive operation was successful
projectIdstringThe ID of the archived project

linear_list_users

List all users in the Linear workspace

Entrada

ParâmetroTipoObrigatórioDescrição
includeDisabledbooleanNãoInclude disabled/inactive users
firstnumberNãoNumber of users to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
usersarrayArray of workspace users

linear_list_teams

List all teams in the Linear workspace

Entrada

ParâmetroTipoObrigatórioDescrição
firstnumberNãoNumber of teams to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
teamsarrayArray of teams

linear_get_viewer

Get the currently authenticated user (viewer) information

Entrada

ParâmetroTipoObrigatórioDescrição

Saída

ParameterTypeDescription
userobjectThe currently authenticated user

linear_list_labels

List all labels in Linear workspace or team

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringNãoFilter by team ID
firstnumberNãoNumber of labels to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
labelsarrayArray of labels

linear_create_label

Create a new label in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
namestringSimLabel name
colorstringNãoLabel color (hex format, e.g., "#ff0000")
descriptionstringNãoLabel description
teamIdstringNãoTeam ID (if omitted, creates workspace label)

Saída

ParameterTypeDescription
labelobjectThe created label

linear_update_label

Update an existing label in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
labelIdstringSimLabel ID to update
namestringNãoNew label name
colorstringNãoNew label color (hex format)
descriptionstringNãoNew label description

Saída

ParameterTypeDescription
labelobjectThe updated label

linear_archive_label

Archive a label in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
labelIdstringSimLabel ID to archive

Saída

ParameterTypeDescription
successbooleanWhether the archive operation was successful
labelIdstringThe ID of the archived label

linear_list_workflow_states

List all workflow states (statuses) in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringNãoFilter by team ID
firstnumberNãoNumber of states to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
statesarrayArray of workflow states

linear_create_workflow_state

Create a new workflow state (status) in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringSimTeam ID to create the state in
namestringSimState name (e.g., "In Review")
colorstringNãoState color (hex format)
typestringSimState type: "backlog", "unstarted", "started", "completed", or "canceled"
descriptionstringNãoState description
positionnumberNãoPosition in the workflow

Saída

ParameterTypeDescription
stateobjectThe created workflow state

linear_update_workflow_state

Update an existing workflow state in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
stateIdstringSimWorkflow state ID to update
namestringNãoNew state name
colorstringNãoNew state color (hex format)
descriptionstringNãoNew state description
positionnumberNãoNew position in workflow

Saída

ParameterTypeDescription
stateobjectThe updated workflow state

linear_list_cycles

List cycles (sprints/iterations) in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringNãoFilter by team ID
firstnumberNãoNumber of cycles to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
cyclesarrayArray of cycles

linear_get_cycle

Get a single cycle by ID from Linear

Entrada

ParâmetroTipoObrigatórioDescrição
cycleIdstringSimCycle ID

Saída

ParameterTypeDescription
cycleobjectThe cycle with full details

linear_create_cycle

Create a new cycle (sprint/iteration) in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringSimTeam ID to create the cycle in
startsAtstringSimCycle start date (ISO format)
endsAtstringSimCycle end date (ISO format)
namestringNãoCycle name (optional, will be auto-generated if not provided)

Saída

ParameterTypeDescription
cycleobjectThe created cycle

linear_get_active_cycle

Get the currently active cycle for a team

Entrada

ParâmetroTipoObrigatórioDescrição
teamIdstringSimTeam ID

Saída

ParameterTypeDescription
cycleobjectThe active cycle (null if no active cycle)

linear_create_attachment

Add an attachment to an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimIssue ID to attach to
urlstringSimURL of the attachment
titlestringSimAttachment title
subtitlestringNãoAttachment subtitle/description

Saída

ParameterTypeDescription
attachmentobjectThe created attachment

linear_list_attachments

List all attachments on an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimIssue ID
firstnumberNãoNumber of attachments to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
attachmentsarrayArray of attachments

linear_update_attachment

Update an attachment metadata in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
attachmentIdstringSimAttachment ID to update
titlestringSimNew attachment title
subtitlestringNãoNew attachment subtitle

Saída

ParameterTypeDescription
attachmentobjectThe updated attachment

linear_delete_attachment

Delete an attachment from Linear

Entrada

ParâmetroTipoObrigatórioDescrição
attachmentIdstringSimAttachment ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the delete operation was successful

linear_create_issue_relation

Link two issues together in Linear (blocks, relates to, duplicates)

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimSource issue ID
relatedIssueIdstringSimTarget issue ID to link to
typestringSimRelation type: "blocks", "duplicate", or "related". Note: When creating "blocks" from A to B, the inverse relation (B blocked by A) is automatically created.

Saída

ParameterTypeDescription
relationobjectThe created issue relation

linear_list_issue_relations

List all relations (dependencies) for an issue in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringSimIssue ID
firstnumberNãoNumber of relations to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
relationsarrayArray of issue relations

linear_delete_issue_relation

Remove a relation between two issues in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
relationIdstringSimRelation ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the delete operation was successful

linear_create_favorite

Bookmark an issue, project, cycle, or label in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
issueIdstringNãoIssue ID to favorite
projectIdstringNãoProject ID to favorite
cycleIdstringNãoCycle ID to favorite
labelIdstringNãoLabel ID to favorite

Saída

ParameterTypeDescription
favoriteobjectThe created favorite

linear_list_favorites

List all bookmarked items for the current user in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
firstnumberNãoNumber of favorites to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
favoritesarrayArray of favorited items

linear_create_project_update

Post a status update for a project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID to post update for
bodystringSimUpdate message (supports Markdown)
healthstringNãoProject health: "onTrack", "atRisk", or "offTrack"

Saída

ParameterTypeDescription
updateobjectThe created project update

linear_list_project_updates

List all status updates for a project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID
firstnumberNãoNumber of updates to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
updatesarrayArray of project updates

Add an external link to a project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID to add link to
urlstringSimURL of the external link
labelstringNãoLink label/title

Saída

ParameterTypeDescription
linkobjectThe created project link

linear_list_notifications

List notifications for the current user in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
firstnumberNãoNumber of notifications to return (default: 50)
afterstringNãoCursor for pagination

Saída

ParameterTypeDescription
notificationsarrayArray of notifications

linear_update_notification

Mark a notification as read or unread in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
notificationIdstringSimNotification ID to update
readAtstringNãoTimestamp to mark as read (ISO format). Pass null or omit to mark as unread

Saída

ParameterTypeDescription
notificationobjectThe updated notification

linear_create_customer

Create a new customer in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
namestringSimCustomer name
domainsarrayNãoDomains associated with this customer
externalIdsarrayNãoExternal IDs from other systems
logoUrlstringNãoCustomer's logo URL
ownerIdstringNãoID of the user who owns this customer
revenuenumberNãoAnnual revenue from this customer
sizenumberNãoSize of the customer organization
statusIdstringNãoCustomer status ID
tierIdstringNãoCustomer tier ID

Saída

ParameterTypeDescription
customerobjectThe created customer

linear_list_customers

List all customers in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
firstnumberNãoNumber of customers to return (default: 50)
afterstringNãoCursor for pagination
includeArchivedbooleanNãoInclude archived customers (default: false)

Saída

ParameterTypeDescription
customersarrayArray of customers

linear_create_customer_request

Create a customer request (need) in Linear. Assign to customer, set urgency (priority: 0 = Not important, 1 = Important), and optionally link to an issue.

Entrada

ParâmetroTipoObrigatórioDescrição
customerIdstringSimCustomer ID to assign this request to
bodystringNãoDescription of the customer request
prioritynumberNãoUrgency level: 0 = Not important, 1 = Important (default: 0)
issueIdstringNãoIssue ID to link this request to
projectIdstringNãoProject ID to link this request to

Saída

ParameterTypeDescription
customerNeedobjectThe created customer request

linear_update_customer_request

Update a customer request (need) in Linear. Can change urgency, description, customer assignment, and linked issue.

Entrada

ParâmetroTipoObrigatórioDescrição
customerNeedIdstringSimCustomer request ID to update
bodystringNãoUpdated description of the customer request
prioritynumberNãoUpdated urgency level: 0 = Not important, 1 = Important
customerIdstringNãoNew customer ID to assign this request to
issueIdstringNãoNew issue ID to link this request to
projectIdstringNãoNew project ID to link this request to

Saída

ParameterTypeDescription
customerNeedobjectThe updated customer request

linear_list_customer_requests

List all customer requests (needs) in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
firstnumberNãoNumber of customer requests to return (default: 50)
afterstringNãoCursor for pagination
includeArchivedbooleanNãoInclude archived customer requests (default: false)

Saída

ParameterTypeDescription
customerNeedsarrayArray of customer requests

linear_get_customer

Get a single customer by ID in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
customerIdstringSimCustomer ID to retrieve

Saída

ParameterTypeDescription
customerobjectThe customer data

linear_update_customer

Update a customer in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
customerIdstringSimCustomer ID to update
namestringNãoUpdated customer name
domainsarrayNãoUpdated domains
externalIdsarrayNãoUpdated external IDs
logoUrlstringNãoUpdated logo URL
ownerIdstringNãoUpdated owner user ID
revenuenumberNãoUpdated annual revenue
sizenumberNãoUpdated organization size
statusIdstringNãoUpdated customer status ID
tierIdstringNãoUpdated customer tier ID

Saída

ParameterTypeDescription
customerobjectThe updated customer

linear_delete_customer

Delete a customer in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
customerIdstringSimCustomer ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the deletion was successful

linear_merge_customers

Merge two customers in Linear by moving all data from source to target

Entrada

ParâmetroTipoObrigatórioDescrição
sourceCustomerIdstringSimSource customer ID (will be deleted after merge)
targetCustomerIdstringSimTarget customer ID (will receive all data)

Saída

ParameterTypeDescription
customerobjectThe merged target customer

linear_create_customer_status

Create a new customer status in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
namestringSimCustomer status name
colorstringSimStatus color (hex code)
displayNamestringNãoDisplay name for the status
descriptionstringNãoStatus description
positionnumberNãoPosition in status list

Saída

ParameterTypeDescription
customerStatusobjectThe created customer status

linear_update_customer_status

Update a customer status in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
statusIdstringSimCustomer status ID to update
namestringNãoUpdated status name
colorstringNãoUpdated status color
displayNamestringNãoUpdated display name
descriptionstringNãoUpdated description
positionnumberNãoUpdated position

Saída

ParameterTypeDescription
customerStatusobjectThe updated customer status

linear_delete_customer_status

Delete a customer status in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
statusIdstringSimCustomer status ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the deletion was successful

linear_list_customer_statuses

List all customer statuses in Linear

Entrada

ParâmetroTipoObrigatórioDescrição

Saída

ParameterTypeDescription
customerStatusesarrayList of customer statuses

linear_create_customer_tier

Create a new customer tier in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
namestringSimCustomer tier name
colorstringSimTier color (hex code)
displayNamestringNãoDisplay name for the tier
descriptionstringNãoTier description
positionnumberNãoPosition in tier list

Saída

ParameterTypeDescription
customerTierobjectThe created customer tier

linear_update_customer_tier

Update a customer tier in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
tierIdstringSimCustomer tier ID to update
namestringNãoUpdated tier name
colorstringNãoUpdated tier color
displayNamestringNãoUpdated display name
descriptionstringNãoUpdated description
positionnumberNãoUpdated position

Saída

ParameterTypeDescription
customerTierobjectThe updated customer tier

linear_delete_customer_tier

Delete a customer tier in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
tierIdstringSimCustomer tier ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the deletion was successful

linear_list_customer_tiers

List all customer tiers in Linear

Entrada

ParâmetroTipoObrigatórioDescrição

Saída

ParameterTypeDescription
customerTiersarrayList of customer tiers

linear_delete_project

Delete a project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the deletion was successful

linear_create_project_label

Create a new project label in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimThe project for this label
namestringSimProject label name
colorstringNãoLabel color (hex code)
descriptionstringNãoLabel description
isGroupbooleanNãoWhether this is a label group
parentIdstringNãoParent label group ID

Saída

ParameterTypeDescription
projectLabelobjectThe created project label

linear_update_project_label

Update a project label in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
labelIdstringSimProject label ID to update
namestringNãoUpdated label name
colorstringNãoUpdated label color
descriptionstringNãoUpdated description

Saída

ParameterTypeDescription
projectLabelobjectThe updated project label

linear_delete_project_label

Delete a project label in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
labelIdstringSimProject label ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the deletion was successful

linear_list_project_labels

List all project labels in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringNãoOptional project ID to filter labels for a specific project

Saída

ParameterTypeDescription
projectLabelsarrayList of project labels

linear_add_label_to_project

Add a label to a project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID
labelIdstringSimLabel ID to add

Saída

ParameterTypeDescription
successbooleanWhether the label was added successfully
projectIdstringThe project ID

linear_remove_label_from_project

Remove a label from a project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID
labelIdstringSimLabel ID to remove

Saída

ParameterTypeDescription
successbooleanWhether the label was removed successfully
projectIdstringThe project ID

linear_create_project_milestone

Create a new project milestone in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID
namestringSimMilestone name
descriptionstringNãoMilestone description
targetDatestringNãoTarget date (ISO 8601)

Saída

ParameterTypeDescription
projectMilestoneobjectThe created project milestone

linear_update_project_milestone

Update a project milestone in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
milestoneIdstringSimProject milestone ID to update
namestringNãoUpdated milestone name
descriptionstringNãoUpdated description
targetDatestringNãoUpdated target date (ISO 8601)

Saída

ParameterTypeDescription
projectMilestoneobjectThe updated project milestone

linear_delete_project_milestone

Delete a project milestone in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
milestoneIdstringSimProject milestone ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the deletion was successful

linear_list_project_milestones

List all milestones for a project in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimProject ID to list milestones for

Saída

ParameterTypeDescription
projectMilestonesarrayList of project milestones

linear_create_project_status

Create a new project status in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
projectIdstringSimThe project to create the status for
namestringSimProject status name
colorstringSimStatus color (hex code)
descriptionstringNãoStatus description
indefinitebooleanNãoWhether the status is indefinite
positionnumberNãoPosition in status list

Saída

ParameterTypeDescription
projectStatusobjectThe created project status

linear_update_project_status

Update a project status in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
statusIdstringSimProject status ID to update
namestringNãoUpdated status name
colorstringNãoUpdated status color
descriptionstringNãoUpdated description
indefinitebooleanNãoUpdated indefinite flag
positionnumberNãoUpdated position

Saída

ParameterTypeDescription
projectStatusobjectThe updated project status

linear_delete_project_status

Delete a project status in Linear

Entrada

ParâmetroTipoObrigatórioDescrição
statusIdstringSimProject status ID to delete

Saída

ParameterTypeDescription
successbooleanWhether the deletion was successful

linear_list_project_statuses

List all project statuses in Linear

Entrada

ParâmetroTipoObrigatórioDescrição

Saída

ParameterTypeDescription
projectStatusesarrayList of project statuses

Notas

  • Category: tools
  • Type: linear
On this page

On this page

Instruções de Uso
Ferramentas
linear_read_issues
Entrada
Saída
linear_get_issue
Entrada
Saída
linear_create_issue
Entrada
Saída
linear_update_issue
Entrada
Saída
linear_archive_issue
Entrada
Saída
linear_unarchive_issue
Entrada
Saída
linear_delete_issue
Entrada
Saída
linear_search_issues
Entrada
Saída
linear_add_label_to_issue
Entrada
Saída
linear_remove_label_from_issue
Entrada
Saída
linear_create_comment
Entrada
Saída
linear_update_comment
Entrada
Saída
linear_delete_comment
Entrada
Saída
linear_list_comments
Entrada
Saída
linear_list_projects
Entrada
Saída
linear_get_project
Entrada
Saída
linear_create_project
Entrada
Saída
linear_update_project
Entrada
Saída
linear_archive_project
Entrada
Saída
linear_list_users
Entrada
Saída
linear_list_teams
Entrada
Saída
linear_get_viewer
Entrada
Saída
linear_list_labels
Entrada
Saída
linear_create_label
Entrada
Saída
linear_update_label
Entrada
Saída
linear_archive_label
Entrada
Saída
linear_list_workflow_states
Entrada
Saída
linear_create_workflow_state
Entrada
Saída
linear_update_workflow_state
Entrada
Saída
linear_list_cycles
Entrada
Saída
linear_get_cycle
Entrada
Saída
linear_create_cycle
Entrada
Saída
linear_get_active_cycle
Entrada
Saída
linear_create_attachment
Entrada
Saída
linear_list_attachments
Entrada
Saída
linear_update_attachment
Entrada
Saída
linear_delete_attachment
Entrada
Saída
linear_create_issue_relation
Entrada
Saída
linear_list_issue_relations
Entrada
Saída
linear_delete_issue_relation
Entrada
Saída
linear_create_favorite
Entrada
Saída
linear_list_favorites
Entrada
Saída
linear_create_project_update
Entrada
Saída
linear_list_project_updates
Entrada
Saída
linear_create_project_link
Entrada
Saída
linear_list_notifications
Entrada
Saída
linear_update_notification
Entrada
Saída
linear_create_customer
Entrada
Saída
linear_list_customers
Entrada
Saída
linear_create_customer_request
Entrada
Saída
linear_update_customer_request
Entrada
Saída
linear_list_customer_requests
Entrada
Saída
linear_get_customer
Entrada
Saída
linear_update_customer
Entrada
Saída
linear_delete_customer
Entrada
Saída
linear_merge_customers
Entrada
Saída
linear_create_customer_status
Entrada
Saída
linear_update_customer_status
Entrada
Saída
linear_delete_customer_status
Entrada
Saída
linear_list_customer_statuses
Entrada
Saída
linear_create_customer_tier
Entrada
Saída
linear_update_customer_tier
Entrada
Saída
linear_delete_customer_tier
Entrada
Saída
linear_list_customer_tiers
Entrada
Saída
linear_delete_project
Entrada
Saída
linear_create_project_label
Entrada
Saída
linear_update_project_label
Entrada
Saída
linear_delete_project_label
Entrada
Saída
linear_list_project_labels
Entrada
Saída
linear_add_label_to_project
Entrada
Saída
linear_remove_label_from_project
Entrada
Saída
linear_create_project_milestone
Entrada
Saída
linear_update_project_milestone
Entrada
Saída
linear_delete_project_milestone
Entrada
Saída
linear_list_project_milestones
Entrada
Saída
linear_create_project_status
Entrada
Saída
linear_update_project_status
Entrada
Saída
linear_delete_project_status
Entrada
Saída
linear_list_project_statuses
Entrada
Saída
Notas
Comece a automatizar hoje
Confiado por empresas em todo o Brasil.
Crie fluxos de automação de vendas com IA no WhatsApp de forma visual e intuitiva.
Começar grátis