Pipefy icon

Pipefy

Interact with Pipefy API

Actions32

Overview

This node integrates with the Pipefy API to manage organizations and other resources. Specifically, for the Organization - Delete operation, it allows users to delete an existing organization by specifying its ID. This is useful in scenarios where an organization is no longer needed or was created by mistake and must be removed from Pipefy.

Practical examples:

  • Automatically clean up test organizations after running integration tests.
  • Remove obsolete organizations as part of a data maintenance workflow.
  • Manage organizational lifecycle by deleting organizations that are closed or merged.

Properties

Name Meaning
Organization ID The unique identifier of the organization to delete

Output

The output JSON contains a single field indicating whether the deletion was successful:

{
  "success": true
}
  • success: A boolean value indicating if the organization was deleted successfully (true) or not (false).

No binary data is output by this operation.

Dependencies

  • Requires an active connection to the Pipefy API via an API key credential configured in n8n.
  • The node sends GraphQL requests to the Pipefy API endpoint: https://api.pipefy.com/graphql.
  • Proper permissions on the API key are necessary to perform organization deletions.

Troubleshooting

  • Common issues:

    • Invalid or missing Organization ID: Ensure the provided ID is correct and exists.
    • Insufficient permissions: The API key used must have rights to delete organizations.
    • Network or API errors: Check connectivity and Pipefy service status.
  • Error messages:

    • "An unknown error occurred": Generic catch-all; check detailed error logs.
    • API response errors may include permission denied or not found errors; verify credentials and organization existence.
  • Resolution tips:

    • Double-check the Organization ID input.
    • Confirm API key permissions.
    • Enable "Continue On Fail" in the node settings to handle errors gracefully in workflows.

Links and References

Discussion