Actions17
- Attachment Actions
- Card Actions
- Webhook Actions
- Pipe Actions
- User Actions
Overview
This node interacts with the Pipefy GraphQL API to retrieve detailed information about a specific Pipe in Pipefy. It allows users to fetch the Pipe by its ID and optionally include related data such as labels, members, phases, and webhooks associated with the Pipe. This is useful for automating workflows that require up-to-date Pipe information, such as project management, process tracking, or integration with other tools.
Use Case Examples
- Retrieve a Pipe's details by its ID to display in a dashboard.
- Fetch a Pipe along with its labels and members to synchronize with an external CRM system.
- Get a Pipe's phases and webhooks to automate notifications or trigger other workflows.
Properties
| Name | Meaning |
|---|---|
| Authentication | Selects the authentication method to use for connecting to the Pipefy API, either via a Service Account or a Personal Access Token. |
| Pipe ID | The unique identifier of the Pipe to retrieve. This is a required field. |
| Include Labels? | Whether to include the labels associated with the Pipe in the response. |
| Include Members? | Whether to include the members associated with the Pipe in the response. |
| Include Phases? | Whether to include the phases of the Pipe in the response. |
| Include Webhooks? | Whether to include the webhooks configured for the Pipe in the response. |
Output
JSON
id- The unique identifier of the Pipe.name- The name of the Pipe.labels- An array of labels associated with the Pipe, if requested.members- An array of members associated with the Pipe, if requested.phases- An array of phases within the Pipe, if requested.webhooks- An array of webhooks configured for the Pipe, if requested.
Dependencies
- Pipefy GraphQL API
Troubleshooting
- Ensure the Pipe ID provided is correct and exists in your Pipefy account to avoid 'Pipe not found' errors.
- Verify that the selected authentication method is properly configured with valid credentials to prevent authentication failures.
- If optional data like labels, members, phases, or webhooks are not returned, check that the corresponding 'Include' options are enabled.
- Network issues or API rate limits may cause request failures; retry or check API usage limits if errors occur.
Links
- Pipefy GraphQL API Documentation - Official documentation for the Pipefy GraphQL API used by this node.