Actions17
- Attachment Actions
- Card Actions
- Webhook Actions
- Pipe Actions
- User Actions
Overview
This node updates a card in Pipefy by modifying its fields such as title, due date, labels, and assignees. It is useful for automating updates to task or project cards within Pipefy workflows, for example, changing a card's due date or reassigning team members based on workflow triggers.
Use Case Examples
- Updating the title and due date of a specific card to reflect new deadlines.
- Replacing the labels and assignees of a card to reorganize task responsibilities.
Properties
| Name | Meaning |
|---|---|
| Authentication | Selects the authentication method to use for the API requests (Service Account or Personal Access Token). |
| Card ID | The unique identifier of the card to update. This is required to specify which card to modify. |
| Title | The new title to set for the card. |
| Due Date | The new due date to assign to the card. |
| Additional Fields | Optional additional fields to update on the card, including labels and assignees, with options to clear existing labels or assignees. |
Output
JSON
id- The unique identifier of the updated card.title- The updated title of the card.due_date- The updated due date of the card.labels- The list of labels currently assigned to the card after update.assignees- The list of assignees currently assigned to the card after update.
Dependencies
- Requires authentication credentials: either a service account API key or a personal access token for Pipefy API.
Troubleshooting
- Ensure the Card ID is correct and accessible; an invalid or missing Card ID will cause update failures.
- Verify that the authentication credentials are valid and have sufficient permissions to update cards.
- If clearing labels or assignees, ensure the boolean flags are set correctly to avoid unintended data removal.
- Check that the labels and assignees specified exist in the Pipefy pipe to avoid errors when replacing them.
Links
- Pipefy GraphQL API Documentation - Official documentation for Pipefy's API used to update cards and other resources.