Actions34
- Activity Actions
- Deal Actions
- Funnel Actions
- Organization Actions
- Person Actions
- Product Actions
- Tag Actions
- User Actions
Overview
This node integrates with the Agendor CRM API to manage sales funnels. Specifically, the "Funnel" resource with the "Get" operation allows users to retrieve detailed information about a specific sales funnel by its ID. This is useful in scenarios where you want to fetch and use funnel data within an automation workflow, such as analyzing funnel stages, tracking sales progress, or integrating funnel details into reports or other systems.
Practical example:
You have a workflow that triggers when a deal moves to a new stage. You can use this node to get the funnel details by providing the funnel ID, then use the funnel's data to customize notifications or update dashboards accordingly.
Properties
| Name | Meaning |
|---|---|
| Funnel ID | The unique identifier of the funnel to retrieve. This is required to specify which funnel's details you want to obtain. |
Output
The node outputs JSON data representing the requested funnel's details as returned by the Agendor API. This typically includes all relevant properties of the funnel such as its name, stages, creation date, and other metadata defined by the API.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating requests to the Agendor CRM API.
- The node makes HTTP GET requests to the endpoint:
https://api.agendor.com.br/v3/funnels/{funnelId}. - Proper configuration of the API token in the node credentials is necessary for successful communication.
Troubleshooting
Common issues:
- Invalid or missing Funnel ID: The node requires a valid funnel ID; ensure it is correctly provided.
- Authentication errors: Verify that the API token credential is correctly set up and has sufficient permissions.
- Network or API downtime: Temporary connectivity issues or API service interruptions may cause failures.
Common error messages:
- 401 Unauthorized: Indicates invalid or missing API authentication token. Resolve by updating the API key credential.
- 404 Not Found: The specified funnel ID does not exist. Check the funnel ID for correctness.
- 400 Bad Request: Possibly due to malformed request parameters. Ensure the funnel ID is properly formatted.
Links and References
- Agendor API Documentation (for detailed API endpoints and data structures)
- n8n Documentation (for general guidance on using API nodes and credentials)