Pipefy icon

Pipefy

Interact with Pipefy API

Actions32

Overview

This node integrates with the Pipefy API to manage organizations within Pipefy. Specifically, the Create Organization operation allows users to create a new organization by specifying its name and industry. This is useful for automating the setup of organizational structures in Pipefy as part of workflows, such as onboarding new clients or setting up project environments.

Practical examples:

  • Automatically create a new organization in Pipefy when a new client signs up in your CRM.
  • Set up multiple organizations programmatically based on data from an external system.
  • Integrate with other tools to maintain consistent organizational data across platforms.

Properties

Name Meaning
Organization Name The name of the organization to be created.
Industry The industry category of the organization. Options include: Construction, Consulting, Education, Energy, Financial Services, Health, Legal Services, Manufacturing, Marketing, Non-Profit Organization, Public Sector, Retail, Tourism, Technology, Telecommunications, Transportation, Others.

Output

The output JSON contains details of the newly created organization:

{
  "id": "string",          // The unique identifier of the created organization
  "name": "string",        // The name of the organization
  "created_at": "string"   // Timestamp of when the organization was created
}

This output can be used downstream in workflows to reference the organization, trigger further actions, or log creation events.

Dependencies

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

Troubleshooting

  • Common issues:

    • Missing or invalid API credentials will cause authentication errors.
    • Providing an empty or invalid organization name or industry may result in API validation errors.
    • Network connectivity issues can prevent successful API calls.
  • Error messages and resolutions:

    • Authentication failed: Verify that the API key credential is correctly set up and has necessary permissions.
    • Validation error: Ensure that the "Organization Name" is not empty and "Industry" is selected from the provided options.
    • Network error: Check internet connectivity and API endpoint availability.

Links and References

Discussion