Actions6
- Contato Actions
- Tag Actions
- Template WhatsApp Actions
- Kanban Actions
Overview
This node integrates with the ChatFunnel API to manage Kanban cards among other resources. Specifically, the "Atualizar Card" (Update Card) operation under the Kanban resource allows users to update existing Kanban cards by modifying their description, status (which corresponds to the Kanban column), and assignee (the person responsible for the card).
Typical use cases include:
- Updating the progress or status of a task represented as a Kanban card.
- Changing the person responsible for a task.
- Adding or modifying descriptive details on a card to reflect new information.
For example, a project manager could automate updating task statuses in a Kanban board when certain events occur, such as a completed subtask or reassignment of responsibilities.
Properties
| Name | Meaning |
|---|---|
| ID do Kanban | The unique identifier of the Kanban board where the card exists. |
| ID do Card | The unique identifier of the card to be updated. |
| Detalhes do Card | A collection of fields to update on the card: - Descrição: Description text of the card. - Status: Status or column name in the Kanban board. - Responsável: ID of the user responsible for the card. |
Output
The node outputs JSON data representing the response from the ChatFunnel API after attempting to update the Kanban card. This typically includes confirmation of the update and the current state of the card.
The output is structured as an array of JSON objects, each corresponding to an input item processed. Each object contains the API response data relevant to the update operation.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating requests to the ChatFunnel API.
- The node makes HTTP POST requests to the endpoint:
https://api.chatfunnel.com.br/webhook/update_kanban_card?apikey=<API_KEY> - Proper configuration of the API key credential within n8n is necessary.
Troubleshooting
Missing Required Fields:
If either "ID do Kanban" or "ID do Card" is not provided, the node will fail because these are required to identify which card to update.Invalid Card or Kanban IDs:
Providing incorrect or non-existent IDs may result in API errors indicating that the card or Kanban board was not found.API Authentication Errors:
If the API key is invalid or missing, the request will fail with authentication errors. Ensure the API key credential is correctly set up.Network or API Endpoint Issues:
Network connectivity problems or changes in the API endpoint URL can cause failures. Verify network access and that the base URL remains valid.Error Messages:
The node logs error messages including the message and stack trace. Common errors relate to missing parameters or failed HTTP requests. Review these logs to identify issues.
Links and References
- ChatFunnel API Documentation (assumed base URL; consult official docs for detailed API usage)
- n8n HTTP Request Node documentation for understanding how HTTP calls are made within custom nodes: https://docs.n8n.io/nodes/credentials/http-request/
If you need further details about other operations or resources, feel free to ask!