Package Information
Documentation
N8N Tools - Pipefy Integration
Complete Pipefy integration for N8N with advanced GraphQL API support, offering comprehensive card, pipe, database, and real-time webhook functionality.
š Features
ā Complete Pipefy Integration
- GraphQL API: Full support for Pipefy's modern GraphQL API
- Rate Limit Handling: Intelligent handling of 500 requests/30s limit
- Error Management: Comprehensive error handling with detailed messages
- Authentication: Secure Personal Access Token authentication
šÆ 4 Specialized Nodes
š N8N Tools - Pipefy Card (#FF5722)
Complete card management with advanced features:
- ā Create: New cards with custom fields, assignees, labels
- ā Update: Modify existing cards and field values
- ā Get: Retrieve single card with all details
- ā Get Many: Bulk card retrieval with pagination
- ā Search: Advanced search by title, assignee, labels
- ā Move Phase: Transfer cards between workflow phases
- ā Delete: Remove cards from pipes
š” N8N Tools - Pipefy Pipe (#E91E63)
Process and workflow management:
- ā Create/Update/Delete: Full pipe lifecycle management
- ā Get Details: Retrieve pipe configuration and statistics
- ā Manage Phases: Configure workflow stages
- ā Member Management: Add/remove pipe members
- ā Field Configuration: Custom field setup
š£ N8N Tools - Pipefy Database (#9C27B0)
Structured data and table operations:
- ā Create/Update Records: Database record management
- ā Table Management: Create and configure tables
- ā Bulk Operations: Mass data import/export
- ā Query Records: Advanced data retrieval
- ā Schema Management: Field and structure configuration
šµ N8N Tools - Pipefy Trigger (#673AB7)
Real-time event automation:
- ā Webhook Support: Instant event notifications
- ā Card Events: Create, update, phase change triggers
- ā Pipe Events: Process and configuration changes
- ā Custom Filtering: Event-specific trigger conditions
- ā Payload Transformation: Clean, structured event data
š¦ Installation
# Install via N8N Community Nodes
npm install n8n-nodes-n8ntools-pipefy
# Or install globally
npm install -g n8n-nodes-n8ntools-pipefy
š Configuration
1. Get Pipefy Personal Access Token
- Go to https://app.pipefy.com/tokens
- Click "Generate new token"
- Add description (e.g., "N8N Integration")
- Copy the generated token
2. Configure N8N Credentials
- In N8N, go to Credentials
- Add "N8N Tools - Pipefy API" credential
- Paste your Personal Access Token
- Test connection
šÆ Usage Examples
Create Card with Custom Fields
{
"pipeId": "123456",
"title": "New Customer Inquiry",
"phaseId": "789012",
"additionalFields": {
"dueDate": "2025-01-15T10:00:00Z",
"assigneeIds": "user123,user456",
"fieldValues": [
{
"fieldId": "customer_email",
"value": "customer@example.com"
},
{
"fieldId": "priority",
"value": "High"
}
]
}
}
Search Cards by Criteria
{
"pipeId": "123456",
"searchTitle": "urgent",
"assigneeId": "user123",
"labelId": "label456",
"limit": 25
}
Move Card Through Workflow
{
"cardId": "987654",
"destinationPhaseId": "phase789"
}
š§ Advanced Features
Batch Operations
- Bulk Card Creation: Create multiple cards in single operation
- Mass Updates: Update multiple cards simultaneously
- Batch Phase Movement: Move multiple cards between phases
- Bulk Delete: Remove multiple cards at once
Field Value Management
- Custom Field Types: Support for all Pipefy field types
- Rich Data: Handle attachments, dates, numbers, selections
- Validation: Automatic field validation and type checking
- Relationships: Manage card connections and dependencies
Error Handling
- Rate Limit Retry: Automatic retry on rate limit hit
- Detailed Errors: Clear error messages with context
- Fallback Options: Graceful degradation on failures
- Logging: Comprehensive operation logging
š API Rate Limits
Pipefy enforces the following limits:
- Per Request: 500 requests per 30 seconds
- Monthly Limits:
- Starter: 20 calls
- Business: 500 calls
- Enterprise: 10,000 calls
- Unlimited: Custom
š Security & Best Practices
Authentication
- ā Bearer Token: Secure OAuth2 authentication
- ā Credential Storage: Encrypted token storage in N8N
- ā Access Control: Admin/Super Admin requirement
- ā Token Management: Easy token rotation support
Data Protection
- ā Field Validation: Input sanitization and validation
- ā Error Sanitization: No sensitive data in error messages
- ā Secure Transmission: HTTPS-only API communication
- ā Minimal Permissions: Request only necessary data
šØ Node Color Hierarchy
Our nodes use a carefully designed color hierarchy:
- š Card (
#FF5722): Primary operations - most frequently used - š” Pipe (
#E91E63): Process management - configuration focused - š£ Database (
#9C27B0): Data operations - structured content - šµ Trigger (
#673AB7): Event handling - automation focused
š Performance Optimization
GraphQL Efficiency
- Field Selection: Request only needed fields
- Batch Queries: Multiple operations in single request
- Pagination: Efficient large dataset handling
- Caching: Smart response caching where appropriate
Network Optimization
- Connection Reuse: HTTP connection pooling
- Compression: Gzip request/response compression
- Timeout Handling: Configurable request timeouts
- Retry Logic: Exponential backoff on failures
š ļø Development & Support
Documentation
- Complete API Coverage: All Pipefy GraphQL operations
- Usage Examples: Real-world implementation samples
- Best Practices: Recommended patterns and approaches
- Troubleshooting: Common issues and solutions
Community Support
- GitHub Issues: Report bugs and feature requests
- Documentation: Complete guides and API reference
- Examples: Sample workflows and use cases
- Discord: Join our community
š License
MIT License - see LICENSE file for details.
š Why Choose N8N Tools Pipefy?
ā
Complete Coverage: All major Pipefy operations supported
ā
Production Ready: Battle-tested with comprehensive error handling
ā
Performance Optimized: Efficient GraphQL queries and caching
ā
Developer Friendly: Clear documentation and examples
ā
Community Driven: Open source with active maintenance
ā
Enterprise Grade: Secure, scalable, and reliable
Made with ā¤ļø by the N8N Tools Community
Transform your Pipefy workflows with the power of N8N automation!