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.
Integrate Jira into the workflow. Can read, write, and update issues. Can also trigger workflows based on Jira webhook events.
Retrieve detailed information about a specific Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | Não | Jira project ID (optional; not required to retrieve a single issue). |
issueKey | string | Sim | Jira issue key to retrieve (e.g., PROJ-123) |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Jira issue details with issue key, summary, description, created and updated timestamps |
Update a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | Não | Jira project ID to update issues in. If not provided, all issues will be retrieved. |
issueKey | string | Sim | Jira issue key to update |
summary | string | Não | New summary for the issue |
description | string | Não | New description for the issue |
status | string | Não | New status for the issue |
priority | string | Não | New priority for the issue |
assignee | string | Não | New assignee for the issue |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Updated Jira issue details with timestamp, issue key, summary, and success status |
Write a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | Sim | Project ID for the issue |
summary | string | Sim | Summary for the issue |
description | string | Não | Description for the issue |
priority | string | Não | Priority for the issue |
assignee | string | Não | Assignee for the issue |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
issueType | string | Sim | Type of issue to create (e.g., Task, Story) |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Created Jira issue details with timestamp, issue key, summary, success status, and URL |
Retrieve multiple Jira issues in bulk
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | Sim | Jira project ID |
cloudId | string | Não | Jira cloud ID |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | array | Array of Jira issues with summary, description, created and updated timestamps |
Delete a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to delete (e.g., PROJ-123) |
deleteSubtasks | boolean | Não | Whether to delete subtasks. If false, parent issues with subtasks cannot be deleted. |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Deleted issue details with timestamp, issue key, and success status |
Assign a Jira issue to a user
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to assign (e.g., PROJ-123) |
accountId | string | Sim | Account ID of the user to assign the issue to. Use "-1" for automatic assignment or null to unassign. |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Assignment details with timestamp, issue key, assignee ID, and success status |
Move a Jira issue between workflow statuses (e.g., To Do -> In Progress)
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to transition (e.g., PROJ-123) |
transitionId | string | Sim | ID of the transition to execute (e.g., "11" for "To Do", "21" for "In Progress") |
comment | string | Não | Optional comment to add when transitioning the issue |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Transition details with timestamp, issue key, transition ID, and success status |
Search for Jira issues using JQL (Jira Query Language)
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
jql | string | Sim | JQL query string to search for issues (e.g., "project = PROJ AND status = Open") |
startAt | number | Não | The index of the first result to return (for pagination) |
maxResults | number | Não | Maximum number of results to return (default: 50) |
fields | array | Não | Array of field names to return (default: ['summary', 'status', 'assignee', 'created', 'updated']) |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Search results with timestamp, total count, pagination details, and array of matching issues |
Add a comment to a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to add comment to (e.g., PROJ-123) |
body | string | Sim | Comment body text |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Comment details with timestamp, issue key, comment ID, body, and success status |
Get all comments from a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to get comments from (e.g., PROJ-123) |
startAt | number | Não | Index of the first comment to return (default: 0) |
maxResults | number | Não | Maximum number of comments to return (default: 50) |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Comments data with timestamp, issue key, total count, and array of comments |
Update an existing comment on a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key containing the comment (e.g., PROJ-123) |
commentId | string | Sim | ID of the comment to update |
body | string | Sim | Updated comment text |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Updated comment details with timestamp, issue key, comment ID, body text, and success status |
Delete a comment from a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key containing the comment (e.g., PROJ-123) |
commentId | string | Sim | ID of the comment to delete |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Deletion details with timestamp, issue key, comment ID, and success status |
Get all attachments from a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to get attachments from (e.g., PROJ-123) |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Attachments data with timestamp, issue key, and array of attachments |
Delete an attachment from a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
attachmentId | string | Sim | ID of the attachment to delete |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Deletion details with timestamp, attachment ID, and success status |
Add a time tracking worklog entry to a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to add worklog to (e.g., PROJ-123) |
timeSpentSeconds | number | Sim | Time spent in seconds |
comment | string | Não | Optional comment for the worklog entry |
started | string | Não | Optional start time in ISO format (defaults to current time) |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Worklog details with timestamp, issue key, worklog ID, time spent in seconds, and success status |
Get all worklog entries from a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to get worklogs from (e.g., PROJ-123) |
startAt | number | Não | Index of the first worklog to return (default: 0) |
maxResults | number | Não | Maximum number of worklogs to return (default: 50) |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Worklogs data with timestamp, issue key, total count, and array of worklogs |
Update an existing worklog entry on a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key containing the worklog (e.g., PROJ-123) |
worklogId | string | Sim | ID of the worklog entry to update |
timeSpentSeconds | number | Não | Time spent in seconds |
comment | string | Não | Optional comment for the worklog entry |
started | string | Não | Optional start time in ISO format |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Worklog update details with timestamp, issue key, worklog ID, and success status |
Delete a worklog entry from a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key containing the worklog (e.g., PROJ-123) |
worklogId | string | Sim | ID of the worklog entry to delete |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Deletion details with timestamp, issue key, worklog ID, and success status |
Create a link relationship between two Jira issues
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
inwardIssueKey | string | Sim | Jira issue key for the inward issue (e.g., PROJ-123) |
outwardIssueKey | string | Sim | Jira issue key for the outward issue (e.g., PROJ-456) |
linkType | string | Sim | The type of link relationship (e.g., "Blocks", "Relates to", "Duplicates") |
comment | string | Não | Optional comment to add to the issue link |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Issue link details with timestamp, inward issue key, outward issue key, link type, and success status |
Delete a link between two Jira issues
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
linkId | string | Sim | ID of the issue link to delete |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Deletion details with timestamp, link ID, and success status |
Add a watcher to a Jira issue to receive notifications about updates
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to add watcher to (e.g., PROJ-123) |
accountId | string | Sim | Account ID of the user to add as watcher |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Watcher details with timestamp, issue key, watcher account ID, and success status |
Remove a watcher from a Jira issue
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
domain | string | Sim | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Sim | Jira issue key to remove watcher from (e.g., PROJ-123) |
accountId | string | Sim | Account ID of the user to remove as watcher |
cloudId | string | Não | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Removal details with timestamp, issue key, watcher account ID, and success status |
- Category:
tools
- Type:
jira