Actions17
- Attachment Actions
- Card Actions
- Webhook Actions
- Pipe Actions
- User Actions
Overview
This node interacts with the Pipefy GraphQL API to create a new card within a specified pipe in an organization. It is useful for automating workflows where new tasks or items need to be added to a Pipefy pipe programmatically, such as creating support tickets, project tasks, or any custom card-based workflow items.
Use Case Examples
- Automatically create a new card in a Pipefy pipe when a form is submitted.
- Add a card to a project management pipe based on data from another system.
Properties
| Name | Meaning |
|---|---|
| Authentication | Selects the authentication method to use for connecting to Pipefy (Service Account or Personal Access Token). |
| Org Name or ID | The ID of the organization in Pipefy where the pipe exists. This determines the scope for pipes available to create cards in. |
| Pipe Name or ID | The ID of the pipe within the organization where the new card will be created. |
| Title | The title of the new card to be created in the specified pipe. |
| Fields | Additional fields to set on the new card, mapped according to the pipe's start form fields. |
Output
JSON
id- The unique identifier of the newly created card.title- The title of the created card.fields- The values of the fields set on the card.
Dependencies
- Pipefy GraphQL API
Troubleshooting
- Ensure the provided organization ID and pipe ID are correct and accessible with the chosen authentication method.
- Verify that the authentication credentials (service account or personal token) are valid and have sufficient permissions.
- If no fields are found or the card creation fails, check that the pipe's start form is properly configured and that required fields are provided.
Links
- Pipefy GraphQL API Documentation - Official documentation for the Pipefy GraphQL API used by this node.