ZippyVendas

Jira

Interagir com Jira

Jira é uma plataforma líder de gerenciamento de projetos e rastreamento de issues que ajuda equipes a planejar, rastrear e gerenciar projetos de desenvolvimento de software ágil de forma eficaz. Como parte do pacote Atlassian, o Jira se tornou o padrão da indústria para equipes de desenvolvimento de software e profissionais de gerenciamento de projetos em todo o mundo.

O Jira 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 Jira permite que equipes simplifiquem seus processos de desenvolvimento e mantenham visibilidade clara do progresso do projeto.

Recursos principais do Jira 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: JQL (Jira Query Language) para filtragem complexa de issues e relatórios

No ZippyVendas, a integração do Jira 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 criem, recuperem e atualizem issues do Jira 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 Jira, 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 Jira into the workflow. Can read, write, and update issues. Can also trigger workflows based on Jira webhook events.

Ferramentas

jira_retrieve

Retrieve detailed information about a specific Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
projectIdstringNãoJira project ID (optional; not required to retrieve a single issue).
issueKeystringSimJira issue key to retrieve (e.g., PROJ-123)
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectJira issue details with issue key, summary, description, created and updated timestamps

jira_update

Update a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
projectIdstringNãoJira project ID to update issues in. If not provided, all issues will be retrieved.
issueKeystringSimJira issue key to update
summarystringNãoNew summary for the issue
descriptionstringNãoNew description for the issue
statusstringNãoNew status for the issue
prioritystringNãoNew priority for the issue
assigneestringNãoNew assignee for the issue
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectUpdated Jira issue details with timestamp, issue key, summary, and success status

jira_write

Write a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
projectIdstringSimProject ID for the issue
summarystringSimSummary for the issue
descriptionstringNãoDescription for the issue
prioritystringNãoPriority for the issue
assigneestringNãoAssignee for the issue
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.
issueTypestringSimType of issue to create (e.g., Task, Story)

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectCreated Jira issue details with timestamp, issue key, summary, success status, and URL

jira_bulk_read

Retrieve multiple Jira issues in bulk

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
projectIdstringSimJira project ID
cloudIdstringNãoJira cloud ID

Saída

ParameterTypeDescription
successbooleanOperation success status
outputarrayArray of Jira issues with summary, description, created and updated timestamps

jira_delete_issue

Delete a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to delete (e.g., PROJ-123)
deleteSubtasksbooleanNãoWhether to delete subtasks. If false, parent issues with subtasks cannot be deleted.
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectDeleted issue details with timestamp, issue key, and success status

jira_assign_issue

Assign a Jira issue to a user

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to assign (e.g., PROJ-123)
accountIdstringSimAccount ID of the user to assign the issue to. Use "-1" for automatic assignment or null to unassign.
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectAssignment details with timestamp, issue key, assignee ID, and success status

jira_transition_issue

Move a Jira issue between workflow statuses (e.g., To Do -> In Progress)

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to transition (e.g., PROJ-123)
transitionIdstringSimID of the transition to execute (e.g., "11" for "To Do", "21" for "In Progress")
commentstringNãoOptional comment to add when transitioning the issue
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectTransition details with timestamp, issue key, transition ID, and success status

jira_search_issues

Search for Jira issues using JQL (Jira Query Language)

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
jqlstringSimJQL query string to search for issues (e.g., "project = PROJ AND status = Open")
startAtnumberNãoThe index of the first result to return (for pagination)
maxResultsnumberNãoMaximum number of results to return (default: 50)
fieldsarrayNãoArray of field names to return (default: ['summary', 'status', 'assignee', 'created', 'updated'])
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectSearch results with timestamp, total count, pagination details, and array of matching issues

jira_add_comment

Add a comment to a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to add comment to (e.g., PROJ-123)
bodystringSimComment body text
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectComment details with timestamp, issue key, comment ID, body, and success status

jira_get_comments

Get all comments from a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to get comments from (e.g., PROJ-123)
startAtnumberNãoIndex of the first comment to return (default: 0)
maxResultsnumberNãoMaximum number of comments to return (default: 50)
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectComments data with timestamp, issue key, total count, and array of comments

jira_update_comment

Update an existing comment on a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key containing the comment (e.g., PROJ-123)
commentIdstringSimID of the comment to update
bodystringSimUpdated comment text
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectUpdated comment details with timestamp, issue key, comment ID, body text, and success status

jira_delete_comment

Delete a comment from a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key containing the comment (e.g., PROJ-123)
commentIdstringSimID of the comment to delete
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectDeletion details with timestamp, issue key, comment ID, and success status

jira_get_attachments

Get all attachments from a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to get attachments from (e.g., PROJ-123)
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectAttachments data with timestamp, issue key, and array of attachments

jira_delete_attachment

Delete an attachment from a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
attachmentIdstringSimID of the attachment to delete
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectDeletion details with timestamp, attachment ID, and success status

jira_add_worklog

Add a time tracking worklog entry to a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to add worklog to (e.g., PROJ-123)
timeSpentSecondsnumberSimTime spent in seconds
commentstringNãoOptional comment for the worklog entry
startedstringNãoOptional start time in ISO format (defaults to current time)
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectWorklog details with timestamp, issue key, worklog ID, time spent in seconds, and success status

jira_get_worklogs

Get all worklog entries from a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to get worklogs from (e.g., PROJ-123)
startAtnumberNãoIndex of the first worklog to return (default: 0)
maxResultsnumberNãoMaximum number of worklogs to return (default: 50)
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectWorklogs data with timestamp, issue key, total count, and array of worklogs

jira_update_worklog

Update an existing worklog entry on a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key containing the worklog (e.g., PROJ-123)
worklogIdstringSimID of the worklog entry to update
timeSpentSecondsnumberNãoTime spent in seconds
commentstringNãoOptional comment for the worklog entry
startedstringNãoOptional start time in ISO format
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectWorklog update details with timestamp, issue key, worklog ID, and success status

jira_delete_worklog

Delete a worklog entry from a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key containing the worklog (e.g., PROJ-123)
worklogIdstringSimID of the worklog entry to delete
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectDeletion details with timestamp, issue key, worklog ID, and success status

Create a link relationship between two Jira issues

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
inwardIssueKeystringSimJira issue key for the inward issue (e.g., PROJ-123)
outwardIssueKeystringSimJira issue key for the outward issue (e.g., PROJ-456)
linkTypestringSimThe type of link relationship (e.g., "Blocks", "Relates to", "Duplicates")
commentstringNãoOptional comment to add to the issue link
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectIssue link details with timestamp, inward issue key, outward issue key, link type, and success status

Delete a link between two Jira issues

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
linkIdstringSimID of the issue link to delete
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectDeletion details with timestamp, link ID, and success status

jira_add_watcher

Add a watcher to a Jira issue to receive notifications about updates

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to add watcher to (e.g., PROJ-123)
accountIdstringSimAccount ID of the user to add as watcher
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectWatcher details with timestamp, issue key, watcher account ID, and success status

jira_remove_watcher

Remove a watcher from a Jira issue

Entrada

ParâmetroTipoObrigatórioDescrição
domainstringSimYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringSimJira issue key to remove watcher from (e.g., PROJ-123)
accountIdstringSimAccount ID of the user to remove as watcher
cloudIdstringNãoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Saída

ParameterTypeDescription
successbooleanOperation success status
outputobjectRemoval details with timestamp, issue key, watcher account ID, and success status

Notas

  • Category: tools
  • Type: jira
On this page

On this page

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