Trello
Gerencie quadros e cartões do Trello
Trello é uma ferramenta de colaboração visual que ajuda você a organizar projetos, tarefas e fluxos de trabalho usando quadros, listas e cartões.
Com o Trello no Zippy, você pode:
- Listar quadros e listas: Visualize os quadros que você tem acesso e suas listas associadas.
- Listar e buscar cartões: Recupere todos os cartões em um quadro ou filtre por lista para ver seu conteúdo e status.
- Criar cartões: Adicione novos cartões a uma lista do Trello, incluindo descrições, etiquetas e datas de vencimento.
- Atualizar e mover cartões: Edite propriedades de cartões, mova cartões entre listas e defina datas de vencimento ou etiquetas.
- Obter atividade recente: Recupere ações e histórico de atividades de quadros e cartões.
- Comentar em cartões: Adicione comentários a cartões para colaboração e rastreamento.
Integrar o Trello com o Zippy capacita seus agentes a gerenciar as tarefas, quadros e projetos da sua equipe programaticamente. Automatize fluxos de trabalho de gerenciamento de projetos, mantenha listas de tarefas atualizadas, sincronize com outras ferramentas ou acione fluxos de trabalho inteligentes em resposta a eventos do Trello—tudo através dos seus agentes de IA.
Integre com o Trello para gerenciar quadros e cartões. Liste quadros, liste cartões, crie cartões, atualize cartões, obtenha ações e adicione comentários.
List all lists on a Trello board
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
boardId | string | Sim | ID of the board to list lists from |
| Parâmetro | Tipo | Descrição |
|---|
success | boolean | Whether the operation was successful |
lists | array | Array of list objects with id, name, closed, pos, and idBoard |
count | number | Number of lists returned |
error | string | Error message if operation failed |
List all cards on a Trello board
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
boardId | string | Sim | ID of the board to list cards from |
listId | string | Não | Optional: Filter cards by list ID |
| Parâmetro | Tipo | Descrição |
|---|
success | boolean | Whether the operation was successful |
cards | array | Array of card objects with id, name, desc, url, board/list IDs, labels, and due date |
count | number | Number of cards returned |
error | string | Error message if operation failed |
Create a new card on a Trello board
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
boardId | string | Sim | ID of the board to create the card on |
listId | string | Sim | ID of the list to create the card in |
name | string | Sim | Name/title of the card |
desc | string | Não | Description of the card |
pos | string | Não | Position of the card (top, bottom, or positive float) |
due | string | Não | Due date (ISO 8601 format) |
labels | string | Não | Comma-separated list of label IDs |
| Parâmetro | Tipo | Descrição |
|---|
success | boolean | Whether the card was created successfully |
card | object | The created card object with id, name, desc, url, and other properties |
error | string | Error message if operation failed |
Update an existing card on Trello
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
cardId | string | Sim | ID of the card to update |
name | string | Não | New name/title of the card |
desc | string | Não | New description of the card |
closed | boolean | Não | Archive/close the card (true) or reopen it (false) |
idList | string | Não | Move card to a different list |
due | string | Não | Due date (ISO 8601 format) |
dueComplete | boolean | Não | Mark the due date as complete |
| Parâmetro | Tipo | Descrição |
|---|
success | boolean | Whether the card was updated successfully |
card | object | The updated card object with id, name, desc, url, and other properties |
error | string | Error message if operation failed |
Get activity/actions from a board or card
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
boardId | string | Não | ID of the board to get actions from (either boardId or cardId required) |
cardId | string | Não | ID of the card to get actions from (either boardId or cardId required) |
filter | string | Não | Filter actions by type (e.g., "commentCard,updateCard,createCard" or "all") |
limit | number | Não | Maximum number of actions to return (default: 50, max: 1000) |
| Parâmetro | Tipo | Descrição |
|---|
success | boolean | Whether the operation was successful |
actions | array | Array of action objects with type, date, member, and data |
count | number | Number of actions returned |
error | string | Error message if operation failed |
Add a comment to a Trello card
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
cardId | string | Sim | ID of the card to comment on |
text | string | Sim | Comment text |
| Parâmetro | Tipo | Descrição |
|---|
success | boolean | Whether the comment was added successfully |
comment | object | The created comment object with id, text, date, and member creator |
error | string | Error message if operation failed |
- Categoria:
tools
- Tipo:
trello