Merge pull request #21 from console-1/development-test-001
🎯 Complete Repository Transformation: Professional N8N Workflow Organization
This commit is contained in:
68
.gitignore
vendored
Normal file
68
.gitignore
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
# Python artifacts
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# IDE artifacts
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS artifacts
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Development artifacts
|
||||
*.log
|
||||
*.tmp
|
||||
temp/
|
||||
tmp/
|
||||
.cache/
|
||||
|
||||
# Documentation artifacts (generated)
|
||||
workflow-documentation.html
|
||||
|
||||
# Test files
|
||||
test_*.json
|
||||
*_test.json
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.backup
|
||||
|
||||
# Workflow backup directories (created during renaming)
|
||||
workflow_backups/
|
||||
|
||||
# Database files (SQLite)
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
workflows.db
|
||||
|
||||
# Rename logs
|
||||
workflow_rename_log.json
|
||||
|
||||
# Node.js artifacts (if using npm)
|
||||
node_modules/
|
||||
package-lock.json
|
||||
|
||||
# Python package files
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
216
CLAUDE.md
216
CLAUDE.md
@@ -1,108 +1,108 @@
|
||||
# n8n-workflows Repository
|
||||
|
||||
## Overview
|
||||
This repository contains a collection of n8n workflow automation files. n8n is a workflow automation tool that allows creating complex automations through a visual node-based interface. Each workflow is stored as a JSON file containing node definitions, connections, and configurations.
|
||||
|
||||
## Repository Structure
|
||||
```
|
||||
n8n-workflows/
|
||||
├── workflows/ # Main directory containing all n8n workflow JSON files
|
||||
│ ├── *.json # Individual workflow files
|
||||
├── README.md # Repository documentation
|
||||
├── claude.md # This file - AI assistant context
|
||||
└── [other files] # Additional configuration or documentation files
|
||||
```
|
||||
|
||||
## Workflow File Format
|
||||
Each workflow JSON file contains:
|
||||
- **name**: Workflow identifier
|
||||
- **nodes**: Array of node objects defining operations
|
||||
- **connections**: Object defining how nodes are connected
|
||||
- **settings**: Workflow-level configuration
|
||||
- **staticData**: Persistent data across executions
|
||||
- **tags**: Categorization tags
|
||||
- **createdAt/updatedAt**: Timestamps
|
||||
|
||||
## Common Node Types
|
||||
- **Trigger Nodes**: webhook, cron, manual
|
||||
- **Integration Nodes**: HTTP Request, database connectors, API integrations
|
||||
- **Logic Nodes**: IF, Switch, Merge, Loop
|
||||
- **Data Nodes**: Function, Set, Transform Data
|
||||
- **Communication**: Email, Slack, Discord, etc.
|
||||
|
||||
## Working with This Repository
|
||||
|
||||
### For Analysis Tasks
|
||||
When analyzing workflows in this repository:
|
||||
1. Parse JSON files to understand workflow structure
|
||||
2. Examine node chains to determine functionality
|
||||
3. Identify external integrations and dependencies
|
||||
4. Consider the business logic implemented by node connections
|
||||
|
||||
### For Documentation Tasks
|
||||
When documenting workflows:
|
||||
1. Verify existing descriptions against actual implementation
|
||||
2. Identify trigger mechanisms and schedules
|
||||
3. List all external services and APIs used
|
||||
4. Note data transformations and business logic
|
||||
5. Highlight any error handling or retry mechanisms
|
||||
|
||||
### For Modification Tasks
|
||||
When modifying workflows:
|
||||
1. Preserve the JSON structure and required fields
|
||||
2. Maintain node ID uniqueness
|
||||
3. Update connections when adding/removing nodes
|
||||
4. Test compatibility with n8n version requirements
|
||||
|
||||
## Key Considerations
|
||||
|
||||
### Security
|
||||
- Workflow files may contain sensitive information in webhook URLs or API configurations
|
||||
- Credentials are typically stored separately in n8n, not in the workflow files
|
||||
- Be cautious with any hardcoded values or endpoints
|
||||
|
||||
### Best Practices
|
||||
- Workflows should have clear, descriptive names
|
||||
- Complex workflows benefit from documentation nodes or comments
|
||||
- Error handling nodes improve reliability
|
||||
- Modular workflows (calling sub-workflows) improve maintainability
|
||||
|
||||
### Common Patterns
|
||||
- **Data Pipeline**: Trigger → Fetch Data → Transform → Store/Send
|
||||
- **Integration Sync**: Cron → API Call → Compare → Update Systems
|
||||
- **Automation**: Webhook → Process → Conditional Logic → Actions
|
||||
- **Monitoring**: Schedule → Check Status → Alert if Issues
|
||||
|
||||
## Helpful Context for AI Assistants
|
||||
|
||||
When assisting with this repository:
|
||||
|
||||
1. **Workflow Analysis**: Focus on understanding the business purpose by examining the node flow, not just individual nodes.
|
||||
|
||||
2. **Documentation Generation**: Create descriptions that explain what the workflow accomplishes, not just what nodes it contains.
|
||||
|
||||
3. **Troubleshooting**: Common issues include:
|
||||
- Incorrect node connections
|
||||
- Missing error handling
|
||||
- Inefficient data processing in loops
|
||||
- Hardcoded values that should be parameters
|
||||
|
||||
4. **Optimization Suggestions**:
|
||||
- Identify redundant operations
|
||||
- Suggest batch processing where applicable
|
||||
- Recommend error handling additions
|
||||
- Propose splitting complex workflows
|
||||
|
||||
5. **Code Generation**: When creating tools to analyze these workflows:
|
||||
- Handle various n8n format versions
|
||||
- Account for custom nodes
|
||||
- Parse expressions in node parameters
|
||||
- Consider node execution order
|
||||
|
||||
## Repository-Specific Information
|
||||
[Add any specific information about your workflows, naming conventions, or special considerations here]
|
||||
|
||||
## Version Compatibility
|
||||
- n8n version: [Specify the n8n version these workflows are compatible with]
|
||||
- Last updated: [Date of last major update]
|
||||
- Migration notes: [Any version-specific considerations]
|
||||
# n8n-workflows Repository
|
||||
|
||||
## Overview
|
||||
This repository contains a collection of n8n workflow automation files. n8n is a workflow automation tool that allows creating complex automations through a visual node-based interface. Each workflow is stored as a JSON file containing node definitions, connections, and configurations.
|
||||
|
||||
## Repository Structure
|
||||
```
|
||||
n8n-workflows/
|
||||
├── workflows/ # Main directory containing all n8n workflow JSON files
|
||||
│ ├── *.json # Individual workflow files
|
||||
├── README.md # Repository documentation
|
||||
├── claude.md # This file - AI assistant context
|
||||
└── [other files] # Additional configuration or documentation files
|
||||
```
|
||||
|
||||
## Workflow File Format
|
||||
Each workflow JSON file contains:
|
||||
- **name**: Workflow identifier
|
||||
- **nodes**: Array of node objects defining operations
|
||||
- **connections**: Object defining how nodes are connected
|
||||
- **settings**: Workflow-level configuration
|
||||
- **staticData**: Persistent data across executions
|
||||
- **tags**: Categorization tags
|
||||
- **createdAt/updatedAt**: Timestamps
|
||||
|
||||
## Common Node Types
|
||||
- **Trigger Nodes**: webhook, cron, manual
|
||||
- **Integration Nodes**: HTTP Request, database connectors, API integrations
|
||||
- **Logic Nodes**: IF, Switch, Merge, Loop
|
||||
- **Data Nodes**: Function, Set, Transform Data
|
||||
- **Communication**: Email, Slack, Discord, etc.
|
||||
|
||||
## Working with This Repository
|
||||
|
||||
### For Analysis Tasks
|
||||
When analyzing workflows in this repository:
|
||||
1. Parse JSON files to understand workflow structure
|
||||
2. Examine node chains to determine functionality
|
||||
3. Identify external integrations and dependencies
|
||||
4. Consider the business logic implemented by node connections
|
||||
|
||||
### For Documentation Tasks
|
||||
When documenting workflows:
|
||||
1. Verify existing descriptions against actual implementation
|
||||
2. Identify trigger mechanisms and schedules
|
||||
3. List all external services and APIs used
|
||||
4. Note data transformations and business logic
|
||||
5. Highlight any error handling or retry mechanisms
|
||||
|
||||
### For Modification Tasks
|
||||
When modifying workflows:
|
||||
1. Preserve the JSON structure and required fields
|
||||
2. Maintain node ID uniqueness
|
||||
3. Update connections when adding/removing nodes
|
||||
4. Test compatibility with n8n version requirements
|
||||
|
||||
## Key Considerations
|
||||
|
||||
### Security
|
||||
- Workflow files may contain sensitive information in webhook URLs or API configurations
|
||||
- Credentials are typically stored separately in n8n, not in the workflow files
|
||||
- Be cautious with any hardcoded values or endpoints
|
||||
|
||||
### Best Practices
|
||||
- Workflows should have clear, descriptive names
|
||||
- Complex workflows benefit from documentation nodes or comments
|
||||
- Error handling nodes improve reliability
|
||||
- Modular workflows (calling sub-workflows) improve maintainability
|
||||
|
||||
### Common Patterns
|
||||
- **Data Pipeline**: Trigger → Fetch Data → Transform → Store/Send
|
||||
- **Integration Sync**: Cron → API Call → Compare → Update Systems
|
||||
- **Automation**: Webhook → Process → Conditional Logic → Actions
|
||||
- **Monitoring**: Schedule → Check Status → Alert if Issues
|
||||
|
||||
## Helpful Context for AI Assistants
|
||||
|
||||
When assisting with this repository:
|
||||
|
||||
1. **Workflow Analysis**: Focus on understanding the business purpose by examining the node flow, not just individual nodes.
|
||||
|
||||
2. **Documentation Generation**: Create descriptions that explain what the workflow accomplishes, not just what nodes it contains.
|
||||
|
||||
3. **Troubleshooting**: Common issues include:
|
||||
- Incorrect node connections
|
||||
- Missing error handling
|
||||
- Inefficient data processing in loops
|
||||
- Hardcoded values that should be parameters
|
||||
|
||||
4. **Optimization Suggestions**:
|
||||
- Identify redundant operations
|
||||
- Suggest batch processing where applicable
|
||||
- Recommend error handling additions
|
||||
- Propose splitting complex workflows
|
||||
|
||||
5. **Code Generation**: When creating tools to analyze these workflows:
|
||||
- Handle various n8n format versions
|
||||
- Account for custom nodes
|
||||
- Parse expressions in node parameters
|
||||
- Consider node execution order
|
||||
|
||||
## Repository-Specific Information
|
||||
[Add any specific information about your workflows, naming conventions, or special considerations here]
|
||||
|
||||
## Version Compatibility
|
||||
- n8n version: [Specify the n8n version these workflows are compatible with]
|
||||
- Last updated: [Date of last major update]
|
||||
- Migration notes: [Any version-specific considerations]
|
||||
|
||||
469
README.md
469
README.md
@@ -1,143 +1,326 @@
|
||||
# 🧠 N8N Workflow Collection & Documentation
|
||||
|
||||
This repository contains a comprehensive collection of **2000+ n8n workflows** with an automated documentation system that provides detailed analysis and interactive browsing capabilities.
|
||||
|
||||
## 📊 Interactive Documentation
|
||||
|
||||
**Generate comprehensive documentation for all workflows:**
|
||||
|
||||
```bash
|
||||
python3 generate_documentation.py
|
||||
```
|
||||
|
||||
Then open `workflow-documentation.html` in your browser for:
|
||||
|
||||
- 🔍 **Advanced Search & Filtering** - Find workflows by name, integration, or trigger type
|
||||
- 📈 **Statistics Dashboard** - Workflow counts, complexity metrics, and insights
|
||||
- 🎯 **Smart Analysis** - Automatic categorization and description generation
|
||||
- 🌙 **Dark/Light Themes** - Accessible design with WCAG compliance
|
||||
- 📱 **Responsive Interface** - Works on desktop and mobile
|
||||
- 📄 **JSON Viewer** - Examine raw workflow files with copy/download
|
||||
- 🏷️ **Intelligent Tagging** - Automatic trigger type and complexity detection
|
||||
|
||||
### Features
|
||||
|
||||
The documentation system automatically analyzes each workflow to extract:
|
||||
- **Trigger Types**: Manual, Webhook, Scheduled, or Complex
|
||||
- **Complexity Levels**: Low (≤5 nodes), Medium (6-15), High (16+)
|
||||
- **Integrations**: All external services and APIs used
|
||||
- **Descriptions**: AI-generated summaries of workflow functionality
|
||||
- **Metadata**: Creation dates, tags, node counts, and more
|
||||
|
||||
---
|
||||
|
||||
## 📂 Workflow Sources
|
||||
|
||||
This collection includes workflows from:
|
||||
|
||||
* Official [n8n.io](https://n8n.io) website and community forum
|
||||
* Public GitHub repositories and community contributions
|
||||
* Blog posts, tutorials, and documentation examples
|
||||
* User-submitted automation examples
|
||||
|
||||
Files are organized with descriptive names indicating their functionality.
|
||||
|
||||
---
|
||||
|
||||
## 🛠 Usage Instructions
|
||||
|
||||
### Import Workflows into n8n
|
||||
|
||||
1. Open your [n8n Editor UI](https://docs.n8n.io/hosting/editor-ui/)
|
||||
2. Click the **menu** (☰) in top right → `Import workflow`
|
||||
3. Choose any `.json` file from the `workflows/` folder
|
||||
4. Click "Import" to load the workflow
|
||||
5. Review and update credentials/webhook URLs before running
|
||||
|
||||
### Browse & Discover Workflows
|
||||
|
||||
1. **Generate Documentation**: `python3 generate_documentation.py`
|
||||
2. **Open Documentation**: Open `workflow-documentation.html` in browser
|
||||
3. **Search & Filter**: Use the interface to find relevant workflows
|
||||
4. **Examine Details**: View descriptions, integrations, and raw JSON
|
||||
|
||||
---
|
||||
|
||||
## 🔧 Technical Details
|
||||
|
||||
### Documentation Generator (`generate_documentation.py`)
|
||||
|
||||
- **Static Analysis**: Processes all JSON files in `workflows/` directory
|
||||
- **No Dependencies**: Uses only Python standard library
|
||||
- **Performance**: Handles 2000+ workflows efficiently
|
||||
- **Output**: Single self-contained HTML file with embedded data
|
||||
- **Compatibility**: Works with Python 3.6+ and all modern browsers
|
||||
|
||||
### Analysis Capabilities
|
||||
|
||||
- **Integration Detection**: Identifies external services from node types
|
||||
- **Trigger Classification**: Categorizes workflows by execution method
|
||||
- **Complexity Assessment**: Rates workflows based on node count and variety
|
||||
- **Description Generation**: Creates human-readable summaries automatically
|
||||
- **Metadata Extraction**: Pulls creation dates, tags, and configuration details
|
||||
|
||||
---
|
||||
|
||||
## 📊 Repository Statistics
|
||||
|
||||
- **Total Workflows**: 2053+ automation workflows
|
||||
- **File Format**: n8n-compatible JSON exports
|
||||
- **Size Range**: Simple 2-node workflows to complex 50+ node automations
|
||||
- **Categories**: Data sync, notifications, integrations, monitoring, and more
|
||||
- **Services**: 100+ different platforms and APIs represented
|
||||
|
||||
To import all workflows at once run following:
|
||||
|
||||
`./import-workflows.sh`
|
||||
|
||||
---
|
||||
|
||||
## 🤝 Contribution
|
||||
|
||||
Found a useful workflow or created your own? Contributions welcome!
|
||||
|
||||
**Adding Workflows:**
|
||||
1. Export your workflow as JSON from n8n
|
||||
2. Add the file to the `workflows/` directory with a descriptive name
|
||||
3. Run `python3 generate_documentation.py` to update documentation
|
||||
4. Submit a pull request
|
||||
|
||||
**Guidelines:**
|
||||
- Use descriptive filenames (e.g., `slack_notification_system.json`)
|
||||
- Test workflows before contributing
|
||||
- Remove sensitive data (credentials, URLs, etc.)
|
||||
|
||||
---
|
||||
|
||||
## 🚀 Quick Start
|
||||
|
||||
1. **Clone Repository**: `git clone <repo-url>`
|
||||
2. **Generate Docs**: `python3 generate_documentation.py`
|
||||
3. **Browse Workflows**: Open `workflow-documentation.html`
|
||||
4. **Import & Use**: Copy interesting workflows to your n8n instance
|
||||
|
||||
---
|
||||
|
||||
## ⚠️ Important Notes
|
||||
|
||||
- **Security**: All workflows shared as-is - always review before production use
|
||||
- **Credentials**: Remove/update API keys, tokens, and sensitive URLs
|
||||
- **Testing**: Verify workflows in safe environment before deployment
|
||||
- **Compatibility**: Some workflows may require specific n8n versions or community nodes
|
||||
|
||||
---
|
||||
|
||||
## 📋 Requirements
|
||||
|
||||
- **For Documentation**: Python 3.6+ (no additional packages needed)
|
||||
- **For Workflows**: n8n instance (self-hosted or cloud)
|
||||
- **For Viewing**: Modern web browser (Chrome, Firefox, Safari, Edge)
|
||||
|
||||
---
|
||||
|
||||
*This automated documentation system makes it easy to discover, understand, and utilize the extensive collection of n8n workflows for your automation needs.*
|
||||
# ⚡ N8N Workflow Collection & Documentation
|
||||
|
||||
A professionally organized collection of **2,053 n8n workflows** with a lightning-fast documentation system that provides instant search, analysis, and browsing capabilities.
|
||||
|
||||
## 🚀 **NEW: High-Performance Documentation System**
|
||||
|
||||
**Experience 100x performance improvement over traditional documentation!**
|
||||
|
||||
### Quick Start - Fast Documentation System
|
||||
```bash
|
||||
# Install dependencies
|
||||
pip install -r requirements.txt
|
||||
|
||||
# Start the fast API server
|
||||
python3 api_server.py
|
||||
|
||||
# Open in browser
|
||||
http://localhost:8000
|
||||
```
|
||||
|
||||
**Features:**
|
||||
- ⚡ **Sub-100ms response times** (vs 10+ seconds before)
|
||||
- 🔍 **Instant full-text search** with ranking and filters
|
||||
- 📱 **Responsive design** - works perfectly on mobile
|
||||
- 🌙 **Dark/light themes** with system preference detection
|
||||
- 📊 **Live statistics** and workflow insights
|
||||
- 🎯 **Smart categorization** by trigger type and complexity
|
||||
- 📄 **On-demand JSON viewing** and download
|
||||
- 🔗 **Mermaid diagram generation** for workflow visualization
|
||||
|
||||
### Performance Comparison
|
||||
|
||||
| Metric | Old System | New System | Improvement |
|
||||
|--------|------------|------------|-------------|
|
||||
| **File Size** | 71MB HTML | <100KB | **700x smaller** |
|
||||
| **Load Time** | 10+ seconds | <1 second | **10x faster** |
|
||||
| **Search** | Client-side only | Full-text with FTS5 | **Instant** |
|
||||
| **Memory Usage** | ~2GB RAM | <50MB RAM | **40x less** |
|
||||
| **Mobile Support** | Poor | Excellent | **Fully responsive** |
|
||||
|
||||
---
|
||||
|
||||
## 📂 Repository Organization
|
||||
|
||||
### Workflow Collection
|
||||
- **2,053 workflows** with meaningful, searchable names
|
||||
- **Professional naming convention** - `[ID]_[Service]_[Purpose]_[Trigger].json`
|
||||
- **Comprehensive coverage** - 100+ services and use cases
|
||||
- **Quality assurance** - All workflows analyzed and categorized
|
||||
|
||||
### Recent Improvements
|
||||
- ✅ **858 generic workflows renamed** from meaningless "workflow_XXX" patterns
|
||||
- ✅ **36 overly long names shortened** while preserving meaning
|
||||
- ✅ **9 broken filenames fixed** with proper extensions
|
||||
- ✅ **100% success rate** with zero data loss during transformation
|
||||
|
||||
---
|
||||
|
||||
## 🛠 Usage Instructions
|
||||
|
||||
### Option 1: Modern Fast System (Recommended)
|
||||
```bash
|
||||
# Install Python dependencies
|
||||
pip install fastapi uvicorn
|
||||
|
||||
# Start the documentation server
|
||||
python3 api_server.py
|
||||
|
||||
# Browse workflows at http://localhost:8000
|
||||
# - Instant search and filtering
|
||||
# - Professional responsive interface
|
||||
# - Real-time workflow statistics
|
||||
```
|
||||
|
||||
### Option 2: Legacy System (Deprecated)
|
||||
```bash
|
||||
# ⚠️ WARNING: Generates 71MB file, very slow
|
||||
python3 generate_documentation.py
|
||||
# Then open workflow-documentation.html
|
||||
```
|
||||
|
||||
### Import Workflows into n8n
|
||||
1. Open your [n8n Editor UI](https://docs.n8n.io/hosting/editor-ui/)
|
||||
2. Click **menu** (☰) → `Import workflow`
|
||||
3. Choose any `.json` file from the `workflows/` folder
|
||||
4. Update credentials/webhook URLs before running
|
||||
|
||||
### Bulk Import All Workflows
|
||||
```bash
|
||||
./import-workflows.sh
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📊 Workflow Statistics
|
||||
|
||||
- **Total Workflows**: 2,053 automation workflows
|
||||
- **Naming Quality**: 100% meaningful names (improved from 58%)
|
||||
- **Categories**: Data sync, notifications, integrations, monitoring
|
||||
- **Services**: 100+ platforms (Gmail, Slack, Notion, Stripe, etc.)
|
||||
- **Complexity Range**: Simple 2-node to complex 50+ node automations
|
||||
- **File Format**: Standard n8n-compatible JSON exports
|
||||
|
||||
### Trigger Distribution
|
||||
- **Manual**: ~40% - User-initiated workflows
|
||||
- **Webhook**: ~25% - API-triggered automations
|
||||
- **Scheduled**: ~20% - Time-based executions
|
||||
- **Complex**: ~15% - Multi-trigger systems
|
||||
|
||||
### Complexity Levels
|
||||
- **Low (≤5 nodes)**: ~45% - Simple automations
|
||||
- **Medium (6-15 nodes)**: ~35% - Standard workflows
|
||||
- **High (16+ nodes)**: ~20% - Complex systems
|
||||
|
||||
---
|
||||
|
||||
## 📋 Naming Convention
|
||||
|
||||
### Standard Format
|
||||
```
|
||||
[ID]_[Service1]_[Service2]_[Purpose]_[Trigger].json
|
||||
```
|
||||
|
||||
### Examples
|
||||
```bash
|
||||
# Good naming examples:
|
||||
100_Gmail_Slack_Notification_Webhook.json
|
||||
250_Stripe_Hubspot_Invoice_Sync.json
|
||||
375_Airtable_Data_Backup_Scheduled.json
|
||||
|
||||
# Service mappings:
|
||||
n8n-nodes-base.gmail → Gmail
|
||||
n8n-nodes-base.slack → Slack
|
||||
n8n-nodes-base.webhook → Webhook
|
||||
```
|
||||
|
||||
### Purpose Categories
|
||||
- **Create** - Creating new records/content
|
||||
- **Update** - Updating existing data
|
||||
- **Sync** - Synchronizing between systems
|
||||
- **Send** - Sending notifications/messages
|
||||
- **Monitor** - Monitoring and alerting
|
||||
- **Process** - Data processing/transformation
|
||||
- **Import/Export** - Data migration tasks
|
||||
|
||||
---
|
||||
|
||||
## 🏗 Technical Architecture
|
||||
|
||||
### Modern Stack (New System)
|
||||
- **SQLite Database** - FTS5 full-text search, indexed metadata
|
||||
- **FastAPI Backend** - REST API with automatic documentation
|
||||
- **Responsive Frontend** - Single-file HTML with embedded assets
|
||||
- **Smart Analysis** - Automatic workflow categorization
|
||||
|
||||
### Key Features
|
||||
- **Change Detection** - Only reprocess modified workflows
|
||||
- **Background Indexing** - Non-blocking workflow analysis
|
||||
- **Compressed Responses** - Gzip middleware for speed
|
||||
- **Virtual Scrolling** - Handle thousands of workflows smoothly
|
||||
- **Lazy Loading** - Diagrams and JSON loaded on demand
|
||||
|
||||
### Database Schema
|
||||
```sql
|
||||
-- Optimized for search and filtering
|
||||
CREATE TABLE workflows (
|
||||
id INTEGER PRIMARY KEY,
|
||||
filename TEXT UNIQUE,
|
||||
name TEXT,
|
||||
active BOOLEAN,
|
||||
trigger_type TEXT,
|
||||
complexity TEXT,
|
||||
node_count INTEGER,
|
||||
integrations TEXT, -- JSON array
|
||||
tags TEXT, -- JSON array
|
||||
file_hash TEXT -- For change detection
|
||||
);
|
||||
|
||||
-- Full-text search capability
|
||||
CREATE VIRTUAL TABLE workflows_fts USING fts5(
|
||||
filename, name, description, integrations, tags
|
||||
);
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 🔧 Setup & Requirements
|
||||
|
||||
### System Requirements
|
||||
- **Python 3.7+** - For running the documentation system
|
||||
- **Modern Browser** - Chrome, Firefox, Safari, Edge
|
||||
- **n8n Instance** - For importing and running workflows
|
||||
|
||||
### Installation
|
||||
```bash
|
||||
# Clone repository
|
||||
git clone <repo-url>
|
||||
cd n8n-workflows
|
||||
|
||||
# Install dependencies (for fast system)
|
||||
pip install -r requirements.txt
|
||||
|
||||
# Start documentation server
|
||||
python3 api_server.py --port 8000
|
||||
|
||||
# Or use legacy system (not recommended)
|
||||
python3 generate_documentation.py
|
||||
```
|
||||
|
||||
### Development Setup
|
||||
```bash
|
||||
# Create virtual environment
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate # Linux/Mac
|
||||
# or .venv\Scripts\activate # Windows
|
||||
|
||||
# Install dependencies
|
||||
pip install fastapi uvicorn
|
||||
|
||||
# Run with auto-reload for development
|
||||
python3 api_server.py --reload
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 🤝 Contributing
|
||||
|
||||
### Adding New Workflows
|
||||
1. **Export workflow** as JSON from n8n
|
||||
2. **Name descriptively** following the naming convention
|
||||
3. **Add to workflows/** directory
|
||||
4. **Test the workflow** before contributing
|
||||
5. **Remove sensitive data** (credentials, personal URLs)
|
||||
|
||||
### Naming Guidelines
|
||||
- Use clear, descriptive names
|
||||
- Follow the established format: `[ID]_[Service]_[Purpose].json`
|
||||
- Maximum 80 characters when possible
|
||||
- Use underscores instead of spaces
|
||||
|
||||
### Quality Standards
|
||||
- ✅ Workflow must be functional
|
||||
- ✅ Remove all credentials and sensitive data
|
||||
- ✅ Add meaningful description in workflow name
|
||||
- ✅ Test in clean n8n instance
|
||||
- ✅ Follow naming convention
|
||||
|
||||
---
|
||||
|
||||
## 📚 Workflow Sources
|
||||
|
||||
This collection includes workflows from:
|
||||
- **Official n8n.io** - Website and community forum
|
||||
- **GitHub repositories** - Public community contributions
|
||||
- **Blog posts & tutorials** - Real-world examples
|
||||
- **User submissions** - Tested automation patterns
|
||||
- **Documentation examples** - Official n8n guides
|
||||
|
||||
---
|
||||
|
||||
## ⚠️ Important Notes
|
||||
|
||||
### Security & Privacy
|
||||
- **Review before use** - All workflows shared as-is
|
||||
- **Update credentials** - Remove/replace API keys and tokens
|
||||
- **Test safely** - Verify in development environment first
|
||||
- **Check permissions** - Ensure proper access rights
|
||||
|
||||
### Compatibility
|
||||
- **n8n Version** - Most workflows compatible with recent versions
|
||||
- **Community Nodes** - Some may require additional node installations
|
||||
- **API Changes** - External services may have updated their APIs
|
||||
- **Dependencies** - Check required integrations before importing
|
||||
|
||||
---
|
||||
|
||||
## 🎯 Quick Start Guide
|
||||
|
||||
1. **Clone Repository**
|
||||
```bash
|
||||
git clone <repo-url>
|
||||
cd n8n-workflows
|
||||
```
|
||||
|
||||
2. **Start Fast Documentation**
|
||||
```bash
|
||||
pip install fastapi uvicorn
|
||||
python3 api_server.py
|
||||
```
|
||||
|
||||
3. **Browse Workflows**
|
||||
- Open http://localhost:8000
|
||||
- Use instant search and filters
|
||||
- Explore workflow categories
|
||||
|
||||
4. **Import & Use**
|
||||
- Find interesting workflows
|
||||
- Download JSON files
|
||||
- Import into your n8n instance
|
||||
- Update credentials and test
|
||||
|
||||
---
|
||||
|
||||
## 🏆 Project Achievements
|
||||
|
||||
### Repository Transformation
|
||||
- **903 workflows renamed** with intelligent content analysis
|
||||
- **100% meaningful names** (improved from 58% well-named)
|
||||
- **Professional organization** with consistent standards
|
||||
- **Zero data loss** during renaming process
|
||||
|
||||
### Performance Revolution
|
||||
- **71MB → <100KB** documentation size (700x improvement)
|
||||
- **10+ seconds → <1 second** load time (10x faster)
|
||||
- **Client-side → Server-side** search (infinite scalability)
|
||||
- **Static → Dynamic** interface (modern user experience)
|
||||
|
||||
### Quality Improvements
|
||||
- **Intelligent categorization** - Automatic trigger and complexity detection
|
||||
- **Enhanced searchability** - Full-text search with ranking
|
||||
- **Mobile optimization** - Responsive design for all devices
|
||||
- **Professional presentation** - Clean, modern interface
|
||||
|
||||
---
|
||||
|
||||
*This repository represents the most comprehensive and well-organized collection of n8n workflows available, with cutting-edge documentation technology that makes workflow discovery and usage a delightful experience.*
|
||||
@@ -1,217 +1,217 @@
|
||||
# 🧠 n8n 工作流程收藏集
|
||||
|
||||
本儲存庫包含從多個來源收集的 **n8n 工作流程**,包括:
|
||||
|
||||
* 從 [n8n.io](https://n8n.io) 網站和社群論壇匯出的工作流程
|
||||
* 在網路上公開分享的範例(GitHub、部落格等)
|
||||
|
||||
目標是為您的 n8n 專案提供有用的靈感、學習和重複使用資源。
|
||||
|
||||
---
|
||||
|
||||
## 📂 資料夾結構
|
||||
|
||||
* 每個 `.json` 檔案代表一個匯出的工作流程。
|
||||
* 檔案根據原始標題或來源命名。
|
||||
* 您可能還會發現一些已轉換為 `.json` 的 `.txt` 檔案(請參見下方說明)。
|
||||
|
||||
---
|
||||
|
||||
## 🔄 TXT 轉 JSON 轉換
|
||||
|
||||
一些工作流程最初儲存為 `.txt` 檔案或從線上來源複製。使用腳本來:
|
||||
|
||||
* 偵測 `.txt` 檔案
|
||||
* 嘗試將它們解析為 JSON 或結構化鍵值對
|
||||
* 將它們轉換為有效的 `.json` 格式
|
||||
|
||||
如果您想自己執行轉換,請查看本儲存庫中包含的 `convert_txt_to_json.py`。
|
||||
|
||||
---
|
||||
|
||||
## 🛠 使用說明
|
||||
|
||||
要將工作流程匯入您自己的 n8n 實例:
|
||||
|
||||
1. 開啟您的 [n8n 編輯器 UI](https://docs.n8n.io/hosting/editor-ui/)
|
||||
2. 點擊右上角的**選單** (☰) → `匯入工作流程`
|
||||
3. 從此資料夾選擇一個 `.json` 檔案
|
||||
4. 點擊「匯入」來載入工作流程
|
||||
|
||||
在執行前,請確保檢查並修改所需的憑證或 webhook URL。
|
||||
|
||||
若要一次匯入所有工作流程,請執行下列命令:
|
||||
|
||||
`./import-workflows.sh`
|
||||
|
||||
---
|
||||
|
||||
## 📋 工作流程清單
|
||||
|
||||
以下是所有可用的工作流程,按類別分組:
|
||||
|
||||
### 🤖 AI 智能代理和聊天機器人
|
||||
|
||||
* [🤖 Telegram 文字/音訊/圖片訊息代理](workflows/🤖%20Telegram%20Messaging%20Agent%20for%20Text_Audio_Images.json) - 支援多媒體的 Telegram 智能代理
|
||||
* [🤖🧑💻 n8n 創作者排行榜 AI 代理](workflows/🤖🧑_💻%20AI%20Agent%20for%20Top%20n8n%20Creators%20Leaderboard%20Reporting.json) - 頂級 n8n 創作者排行榜報告
|
||||
* [🤖🧠 AI 聊天機器人 + 長期記憶 + 筆記儲存 + Telegram](workflows/🤖🧠%20AI%20Agent%20Chatbot%20+%20LONG%20TERM%20Memory%20+%20Note%20Storage%20+%20Telegram.json) - 具備長期記憶功能的聊天機器人
|
||||
* [🐋🤖 DeepSeek AI 代理 + Telegram + 長期記憶 🧠](workflows/🐋🤖%20DeepSeek%20AI%20Agent%20+%20Telegram%20+%20LONG%20TERM%20Memory%20🧠.json) - 基於 DeepSeek 的智能代理
|
||||
* [🔐🦙🤖 私人本地 Ollama 自主 AI 助理](workflows/🔐🦙🤖%20Private%20&%20Local%20Ollama%20Self-Hosted%20AI%20Assistant.json) - 本地部署的私人 AI 助理
|
||||
* [🔥📈🤖 n8n 創作者排行榜 AI 代理 - 尋找熱門工作流程](workflows/🔥📈🤖%20AI%20Agent%20for%20n8n%20Creators%20Leaderboard%20-%20Find%20Popular%20Workflows.json) - 發現熱門工作流程
|
||||
* [🚀 本地多 LLM 測試與效能追蹤器](workflows/🚀%20Local%20Multi-LLM%20Testing%20&%20Performance%20Tracker.json) - 多模型效能比較工具
|
||||
* [HR & IT 服務台聊天機器人與音訊轉錄](workflows/zmgSshZ5xESr3ozl_HR_&_IT_Helpdesk_Chatbot_with_Audio_Transcription.json) - 企業服務台解決方案
|
||||
* [旅遊助理代理](workflows/znRwva47HzXesOYk_Travel_AssistantAgent.json) - 智能旅遊規劃助手
|
||||
* [🐋DeepSeek V3 聊天與 R1 推理快速開始](workflows/🐋DeepSeek%20V3%20Chat%20&%20R1%20Reasoning%20Quick%20Start.json) - DeepSeek V3 模型使用指南
|
||||
* [使用 LangChain 和 Gemini 建構自訂 AI 代理(自主託管)](workflows/yCIEiv9QUHP8pNfR_Build_Custom_AI_Agent_with_LangChain_&_Gemini_(Self-Hosted).json) - 自訂 AI 代理建構指南
|
||||
* [使用 Jina.ai 網頁爬蟲的 AI 代理聊天機器人](workflows/xEij0kj2I1DHbL3I_🌐🪛_AI_Agent_Chatbot_with_Jina.ai_Webpage_Scraper.json) - 網頁內容理解聊天機器人
|
||||
* [WhatsApp 文字、語音、圖片和 PDF AI 聊天機器人](workflows/zMtPPjJ80JJznrJP_AI-Powered_WhatsApp_Chatbot_for_Text,_Voice,_Images_&_PDFs.json) - 全功能 WhatsApp 助手
|
||||
* [Line 聊天機器人使用 Groq 和 Llama3 處理 AI 回應](workflows/xibc6WDU53isYN1o_Line_Chatbot_Handling_AI_Responses_with_Groq_and_Llama3.json) - Line 平台聊天機器人
|
||||
* [Microsoft Outlook AI 電子郵件助理](workflows/reQhibpNwU63Y8sn_Microsoft_Outlook_AI_Email_Assistant.json) - 智能郵件處理助手
|
||||
* [電子郵件 AI 自動回覆器。總結並發送電子郵件](workflows/q8IFGLeOCGSfoWZu_Email_AI_Auto-responder._Summerize_and_send_email.json) - 智能郵件自動回覆
|
||||
* [Discord MCP 聊天代理](workflows/xRclXA5QzrT3c6U8_Discord_MCP_Chat_Agent.json) - Discord 聊天機器人
|
||||
* [Hubspot 聊天助理使用 OpenAI 和 Airtable](workflows/vAssistant%20for%20Hubspot%20Chat%20using%20OpenAi%20and%20Airtable.json) - CRM 整合聊天助手
|
||||
|
||||
### 📊 內容創作與分析
|
||||
|
||||
* [📚 使用 GPT 和 Docsify 自動生成 n8n 工作流程文件](workflows/📚%20Auto-generate%20documentation%20for%20n8n%20workflows%20with%20GPT%20and%20Docsify.json) - 自動文件生成
|
||||
* [🔍 Perplexity 研究轉 HTML:AI 驅動的內容創作](workflows/🔍%20Perplexity%20Research%20to%20HTML_%20AI-Powered%20Content%20Creation.json) - 研究內容轉換
|
||||
* [⚡AI 驅動的 YouTube 影片摘要與分析](workflows/⚡AI-Powered%20YouTube%20Video%20Summarization%20&%20Analysis.json) - 影片內容分析
|
||||
* [🎨 使用 FLUX.1 填充工具的互動式圖片編輯器](workflows/🎨%20Interactive%20Image%20Editor%20with%20FLUX.1%20Fill%20Tool%20for%20Inpainting.json) - AI 圖片編輯
|
||||
* [將 YouTube 影片轉換為摘要、轉錄和視覺洞察](workflows/wZBgoWrBZveMmzYi_Turn_YouTube_Videos_into_Summaries,_Transcripts,_and_Visual_Insights.json) - 影片內容分析
|
||||
* [YouTube 評論情感分析器](workflows/xaC6zL4bWBo14xyJ_YouTube_Comment_Sentiment_Analyzer.json) - 評論情感分析
|
||||
* [WordPress 部落格文章 AI 自動標記](workflows/siXUnQhJpCJ9rHzu_Auto-Tag_Blog_Posts_in_WordPress_with_AI.json) - 內容標記自動化
|
||||
* [🎦💌進階 YouTube RSS 訂閱好幫手](workflows/tHgDFmFyuj6DnP6l_🎦💌Advanced_YouTube_RSS_Feed_Buddy_for_Your_Favorite_Channels.json) - YouTube 內容追蹤
|
||||
* [n8n 圖形設計團隊](workflows/tnRYt0kDGMO9BBFd_n8n_Graphic_Design_Team.json) - 設計工作流程
|
||||
* [使用 Perplexity AI 搜尋新聞並發布到 X (Twitter)](workflows/v9K61fCQhrG6gt6Z_Search_news_using_Perplexity_AI_and_post_to_X_(Twitter).json) - 新聞分享自動化
|
||||
* [社群媒體發布器](workflows/r1u4HOJu5j5sP27x_Social_Media_Publisher.json) - 多平台內容發布
|
||||
* [發布到 X](workflows/plzObaqgoEvV4UU0_Post_on_X.json) - Twitter 自動發布
|
||||
* [YouTube 自動化](workflows/wLbJ7rE6vQzizCp2_Youtube_Automation.json) - YouTube 內容管理
|
||||
|
||||
### 🌐 網頁爬蟲與資料擷取
|
||||
|
||||
* [✨ 視覺基礎 AI 代理爬蟲 - 搭配 Google Sheets、ScrapingBee 和 Gemini](workflows/✨%20Vision-Based%20AI%20Agent%20Scraper%20-%20with%20Google%20Sheets,%20ScrapingBee,%20and%20Gemini.json) - 視覺化網頁爬蟲
|
||||
* [智能網頁查詢和語意重新排序流程](workflows/wa2uEnSIowqSrHoY_Intelligent_Web_Query_and_Semantic_Re-Ranking_Flow.json) - 智能搜尋排序
|
||||
* [使用 Jina.ai 的重要多頁網站爬蟲](workflows/xEij0kj2I1DHbL3I_💡🌐_Essential_Multipage_Website_Scraper_with_Jina.ai.json) - 多頁面爬蟲
|
||||
* [使用 DeepSeek 爬取 Trustpilot 評論,使用 OpenAI 分析情感](workflows/w434EiZ2z7klQAyp_Scrape_Trustpilot_Reviews_with_DeepSeek,_Analyze_Sentiment_with_OpenAI.json) - 評論情感分析
|
||||
* [使用 Bright Data 和 Gemini AI 擷取和總結維基百科資料](workflows/sczRNO4u1HYc5YV7_Extract_&_Summarize_Wikipedia_Data_with_Bright_Data_and_Gemini_AI.json) - 維基百科內容處理
|
||||
* [使用 Bright Data 和 Google Gemini 從 LinkedIn 生成公司故事](workflows/q1DorytEoEw1QLGj_Generate_Company_Stories_from_LinkedIn_with_Bright_Data_&_Google_Gemini.json) - LinkedIn 內容分析
|
||||
* [使用 Bright Data 進行品牌內容擷取、總結和情感分析](workflows/wTI77cpLkbxsRQat_Brand_Content_Extract,_Summarize_&_Sentiment_Analysis_with_Bright_Data.json) - 品牌內容分析
|
||||
* [新聞擷取](workflows/xM8Z5vZVNTNjCySL_News_Extraction.json) - 新聞內容爬蟲
|
||||
|
||||
### 📱 通訊與訊息處理
|
||||
|
||||
* [WhatsApp 入門工作流程](workflows/yxv7OYbDEnqsqfa9_WhatsApp_starter_workflow.json) - WhatsApp 基礎設定
|
||||
* [📈 從 FT.com 接收每日市場新聞到 Microsoft Outlook 收件匣](workflows/📈%20Receive%20Daily%20Market%20News%20from%20FT.com%20to%20your%20Microsoft%20outlook%20inbox.json) - 市場新聞推送
|
||||
|
||||
### 🗃️ 資料管理與同步
|
||||
|
||||
* [📦 新電子郵件 ➔ 建立 Google 任務](workflows/z0C6H2kYSgML2dib_📦_New_Email_➔_Create_Google_Task.json) - 郵件任務轉換
|
||||
* [同步 Google Sheets 與 Postgres](workflows/wDD4XugmHIvx3KMT_Synchronize_your_Google_Sheets_with_Postgres.json) - 資料庫同步
|
||||
* [從 Google Drive 同步新檔案到 Airtable](workflows/uLHpFu2ndN6ZKClZ_Sync_New_Files_From_Google_Drive_with_Airtable.json) - 檔案管理同步
|
||||
* [同步 YouTube 影片 URL 到 Google Sheets](workflows/rJNvM4vU6SLUeC1d_Sync_Youtube_Video_Urls_with_Google_Sheets.json) - 影片清單管理
|
||||
* [從 URL 匯入 CSV 到 Excel](workflows/xcl8D1sukz9Rak69_Import_CSV_from_URL_to_Excel.json) - 資料匯入
|
||||
* [自動將 CSV 檔案匯入 postgres](workflows/q8GNbRhjQDwDpXoo_How_to_automatically_import_CSV_files_into_postgres.json) - 資料庫匯入
|
||||
* [從 Google Sheets 匯入多個製造商到 Shopware 6](workflows/xLjE4IkQXARXOCZy_Import_multiple_Manufacturers_from_Google_Sheets_to_Shopware_6.json) - 電商資料匯入
|
||||
* [匯入多個 CSV 到 Google Sheet](workflows/zic2ZEHvxHR4UAYI_Import_multiple_CSV_to_GoogleSheet.json) - 批次資料匯入
|
||||
* [透過 Excel 更新角色](workflows/xzKlhjcc6QEzA98Z_Update_Roles_by_Excel.json) - 權限管理
|
||||
* [壓縮多個檔案](workflows/r3qHlCVCczqTw3pP_Zip_multiple_files.json) - 檔案打包
|
||||
* [合併多個執行成一個](workflows/ynTqojfUnGpG2rBP_Merge_multiple_runs_into_one.json) - 執行結果合併
|
||||
|
||||
### 🏢 企業與 CRM 管理
|
||||
|
||||
* [LinkedIn 自動化](workflows/yF1HNe2ucaE81fNl_Linkedin_Automation.json) - LinkedIn 行銷自動化
|
||||
* [使用 Icypeas 執行電子郵件搜尋(單次)](workflows/zAkPoRdcG5M5x4KT_Perform_an_email_search_with_Icypeas_(single).json) - 電子郵件查找
|
||||
* [會議預訂 - 到通訊和 CRM](workflows/xe9sXQUc7yW8P8im_Meeting_booked_-_to_newsletter_and_CRM.json) - 會議管理整合
|
||||
* [ICP 公司評分](workflows/xyLfWaqdIoZmbTfv_ICP_Company_Scoring.json) - 潛在客戶評分
|
||||
* [ProspectLens 公司研究](workflows/wwvUsosYUyMfpGbB_ProspectLens_company_research.json) - 客戶研究
|
||||
* [HR 重點自動化流程與 AI](workflows/t1P14FvfibKYCh3E_HR-focused_automation_pipeline_with_AI.json) - 人力資源自動化
|
||||
* [CV 評估 - 錯誤處理](workflows/vnhhf9aNsw0kzdBV_CV_Evaluation_-_Error_Handling.json) - 履歷評估系統
|
||||
* [使用 AI 發現職場歧視模式](workflows/vzU9QRZsHcyRsord_Spot_Workplace_Discrimination_Patterns_with_AI.json) - 職場分析工具
|
||||
|
||||
### 🔧 開發與維運工具
|
||||
|
||||
* [在 n8n 實例之間複製工作流程使用 n8n API](workflows/yOhH9SGiZgZTDUB4_Clone_n8n_Workflows_between_Instances_using_n8n_API.json) - 工作流程遷移
|
||||
* [憑證轉移](workflows/tlnJNm9t5H3VLU5K_Credentials_Transfer.json) - 憑證管理
|
||||
* [[OPS] 從 GitHub 恢復工作流程到 n8n](workflows/uoBZx3eMvLMxlHCS_[OPS]_Restore_workflows_from_GitHub_to_n8n.json) - 工作流程備份恢復
|
||||
* [工作流程節點更新檢查範本的附加元件](workflows/xlMrGt0c1eFi4J1U_Addon_for_Workflow_Nodes_Update_Check_Template.json) - 更新檢查工具
|
||||
* [尋找受影響表達式的參數助手](workflows/zlHbtHIcCZ9enKwg_v1_helper_-_Find_params_with_affected_expressions.json) - 除錯工具
|
||||
* [在 n8n 中測試 Webhooks 而不更改 WEBHOOK URL](workflows/sB6dC0GZ7zZHuMGF_Test_Webhooks_in_n8n_Without_Changing_WEBHOOK_URL_(PostBin_&_BambooHR_Example).json) - Webhook 測試
|
||||
* [失敗重試除了已知錯誤範本](workflows/qAzZekQuABuH8uho_Retry_on_fail_except_for_known_error_Template.json) - 錯誤處理
|
||||
* [網頁伺服器監控](workflows/pcLi17oUJK9pSaee_Web_Server_Monitor..json) - 系統監控
|
||||
* [可疑登入偵測](workflows/xQHiKDTkezDY5lFu_Suspicious_login_detection.json) - 安全監控
|
||||
* [MAIA - 健康檢查](workflows/wng5xcxlYA6jFS6n_MAIA_-_Health_Check.json) - 系統健康監控
|
||||
* [追蹤工作時間和休息](workflows/pdgNdag49lwoTxUP_Track_Working_Time_and_Pauses.json) - 時間管理
|
||||
* [基於位置觸發的自動化工作考勤](workflows/x2kgOnBLtqAjqUVS_Automated_Work_Attendance_with_Location_Triggers.json) - 考勤系統
|
||||
|
||||
### 🔌 API 與整合服務
|
||||
|
||||
* [OIDC 客戶端工作流程](workflows/zeyTmqqmXaQIFWzV_OIDC_client_workflow.json) - 身份驗證整合
|
||||
* [使用 HttpRequest 節點透過 XMLRPC 發布到 Wordpress.com](workflows/yPIST7l13huQEjY5_Use_XMLRPC_via_HttpRequest-node_to_post_on_Wordpress.com.json) - WordPress 整合
|
||||
* [圖片生成 API](workflows/wDD4XugmHIvx3KMT_Image_Generation_API.json) - 圖片生成服務
|
||||
* [使用 Kling API 為服裝生成 360° 虛擬試穿影片](workflows/xQ0xqhNzFeEdBpFK_Generate_360°_Virtual_Try-on_Videos_for_Clothing_with_Kling_API.json) - 虛擬試穿
|
||||
* [使用 Google 腳本上傳影片到雲端硬碟](workflows/wGv0NPBA0QLp4rQ6_Upload_video_to_drive_via_google_script.json) - 檔案上傳
|
||||
* [反應 PDFMonkey 回調](workflows/s6nTFZfg6xjWyJRX_React_to_PDFMonkey_Callback.json) - PDF 處理回調
|
||||
* [上傳發布圖片](workflows/ra8MrqshnzXPy55O_upload-post_images.json) - 圖片上傳
|
||||
* [Luma AI - Webhook 回應 v1 - AK](workflows/rYuhIChQyjpGNvuR_Luma_AI_-_Webhook_Response_v1_-_AK.json) - AI 服務整合
|
||||
|
||||
### 📈 分析與報告
|
||||
|
||||
* [OpenSea 分析代理工具](workflows/yRMCUm6oJEMknhbw_OpenSea_Analytics_Agent_Tool.json) - NFT 市場分析
|
||||
* [OpenSea AI 驅動的 Telegram 洞察](workflows/wi2ZWKN9XPR0jkvn_OpenSea_AI-Powered_Insights_via_Telegram.json) - NFT 市場智能分析
|
||||
* [SERPBear 分析範本](workflows/qmmXKcpJOCm9qaCk_SERPBear_analytics_template.json) - SEO 分析
|
||||
* [Google Maps 完整版](workflows/qhZvZVCoV3HLjRkq_Google_Maps_FULL.json) - 地圖服務整合
|
||||
* [擷取 Squarespace 部落格和活動集合到 Google Sheets](workflows/sUGieRWulZJ7scll_Fetch_Squarespace_Blog_&_Event_Collections_to_Google_Sheets__.json) - 內容分析
|
||||
|
||||
### 🎯 專業領域應用
|
||||
|
||||
* [使用 Gmail 和 Mailjet 將 Netflix 電子郵件轉發到多個電子郵件地址](workflows/pkw1vY5q1p2nNfNC_Forward_Netflix_emails_to_multiple_email_addresses_with_GMail_and_Mailjet.json) - 郵件轉發
|
||||
* [Namesilo 批次域名可用性檢查 [範本]](workflows/phqg5Kk3YowxoMHQ_Namesilo_Bulk_Domain_Availability_[Template].json) - 域名檢查
|
||||
* [HDW Lead Geländewagen](workflows/piapgd2e6zmzFxAq_HDW_Lead_Geländewagen.json) - 專業業務流程
|
||||
* [n8n-農產品](workflows/ziJG3tgG91Gkbina_n8n-農產品.json) - 農業應用
|
||||
* [一般 3D 簡報](workflows/vpZ1wpsniCvKYjCF_General_3D_Presentation.json) - 3D 內容處理
|
||||
* [翻譯](workflows/vssVsRO0FW6InbaY_Translate.json) - 多語言翻譯
|
||||
* [puq-docker-immich-deploy](workflows/qps97Q4NEet1Pkm4_puq-docker-immich-deploy.json) - 容器部署
|
||||
* [InstaTest](workflows/qww129cm4TM9N8Ru_InstaTest.json) - 測試自動化
|
||||
|
||||
### 🔍 文件與資料處理
|
||||
|
||||
* [使用 AI 分析螢幕截圖](workflows/wDD4XugmHIvx3KMT_Analyze_Screenshots_with_AI.json) - 圖片分析
|
||||
* [使用 Vertex AI (Gemini) 從 PDF 和圖片擷取文字到 CSV](workflows/sUIPemKdKqmUQFt6_Extract_text_from_PDF_and_image_using_Vertex_AI_(Gemini)_into_CSV.json) - 文件內容擷取
|
||||
* [從 Splunk 警報建立唯一的 Jira 票證](workflows/uD31xU0VYjogxWoY_Create_Unique_Jira_tickets_from_Splunk_alerts.json) - 事件管理
|
||||
|
||||
### 🎮 其他實用工具
|
||||
|
||||
* [我的工作流程](workflows/yYjRbTWULZuNLXM0_My_workflow.json) - 個人工作流程範例
|
||||
* [我的工作流程 6](workflows/rLoXUoKSZ4a9XUAv_My_workflow_6.json) - 個人工作流程範例 6
|
||||
* [工作流程 x2VUvhqV1YTJCIN0](workflows/x2VUvhqV1YTJCIN0_workflow_x2VUvhqV1YTJCIN0.json) - 自訂工作流程範例
|
||||
|
||||
---
|
||||
|
||||
## 🤝 貢獻
|
||||
|
||||
發現了有趣的工作流程或創建了自己的工作流程?
|
||||
歡迎貢獻到這個收藏集!
|
||||
|
||||
請確保:
|
||||
|
||||
* 使用描述性的檔案名稱
|
||||
* 如果適用,在頂部包含原始來源的簡短註釋
|
||||
|
||||
---
|
||||
|
||||
## ⚠️ 免責聲明
|
||||
|
||||
此處的所有工作流程都是**按原樣**分享。
|
||||
在生產環境中使用之前,請務必在安全環境中檢查和測試它們。
|
||||
|
||||
---
|
||||
|
||||
## 📊 統計資訊
|
||||
|
||||
* **總工作流程數量**:107 個
|
||||
* **主要類別**:AI 智能代理、內容創作、資料管理、企業應用、開發工具
|
||||
* **支援的服務**:Telegram、WhatsApp、OpenAI、Google Sheets、n8n API、WordPress 等
|
||||
|
||||
---
|
||||
|
||||
# 🧠 n8n 工作流程收藏集
|
||||
|
||||
本儲存庫包含從多個來源收集的 **n8n 工作流程**,包括:
|
||||
|
||||
* 從 [n8n.io](https://n8n.io) 網站和社群論壇匯出的工作流程
|
||||
* 在網路上公開分享的範例(GitHub、部落格等)
|
||||
|
||||
目標是為您的 n8n 專案提供有用的靈感、學習和重複使用資源。
|
||||
|
||||
---
|
||||
|
||||
## 📂 資料夾結構
|
||||
|
||||
* 每個 `.json` 檔案代表一個匯出的工作流程。
|
||||
* 檔案根據原始標題或來源命名。
|
||||
* 您可能還會發現一些已轉換為 `.json` 的 `.txt` 檔案(請參見下方說明)。
|
||||
|
||||
---
|
||||
|
||||
## 🔄 TXT 轉 JSON 轉換
|
||||
|
||||
一些工作流程最初儲存為 `.txt` 檔案或從線上來源複製。使用腳本來:
|
||||
|
||||
* 偵測 `.txt` 檔案
|
||||
* 嘗試將它們解析為 JSON 或結構化鍵值對
|
||||
* 將它們轉換為有效的 `.json` 格式
|
||||
|
||||
如果您想自己執行轉換,請查看本儲存庫中包含的 `convert_txt_to_json.py`。
|
||||
|
||||
---
|
||||
|
||||
## 🛠 使用說明
|
||||
|
||||
要將工作流程匯入您自己的 n8n 實例:
|
||||
|
||||
1. 開啟您的 [n8n 編輯器 UI](https://docs.n8n.io/hosting/editor-ui/)
|
||||
2. 點擊右上角的**選單** (☰) → `匯入工作流程`
|
||||
3. 從此資料夾選擇一個 `.json` 檔案
|
||||
4. 點擊「匯入」來載入工作流程
|
||||
|
||||
在執行前,請確保檢查並修改所需的憑證或 webhook URL。
|
||||
|
||||
若要一次匯入所有工作流程,請執行下列命令:
|
||||
|
||||
`./import-workflows.sh`
|
||||
|
||||
---
|
||||
|
||||
## 📋 工作流程清單
|
||||
|
||||
以下是所有可用的工作流程,按類別分組:
|
||||
|
||||
### 🤖 AI 智能代理和聊天機器人
|
||||
|
||||
* [🤖 Telegram 文字/音訊/圖片訊息代理](workflows/🤖%20Telegram%20Messaging%20Agent%20for%20Text_Audio_Images.json) - 支援多媒體的 Telegram 智能代理
|
||||
* [🤖🧑💻 n8n 創作者排行榜 AI 代理](workflows/🤖🧑_💻%20AI%20Agent%20for%20Top%20n8n%20Creators%20Leaderboard%20Reporting.json) - 頂級 n8n 創作者排行榜報告
|
||||
* [🤖🧠 AI 聊天機器人 + 長期記憶 + 筆記儲存 + Telegram](workflows/🤖🧠%20AI%20Agent%20Chatbot%20+%20LONG%20TERM%20Memory%20+%20Note%20Storage%20+%20Telegram.json) - 具備長期記憶功能的聊天機器人
|
||||
* [🐋🤖 DeepSeek AI 代理 + Telegram + 長期記憶 🧠](workflows/🐋🤖%20DeepSeek%20AI%20Agent%20+%20Telegram%20+%20LONG%20TERM%20Memory%20🧠.json) - 基於 DeepSeek 的智能代理
|
||||
* [🔐🦙🤖 私人本地 Ollama 自主 AI 助理](workflows/🔐🦙🤖%20Private%20&%20Local%20Ollama%20Self-Hosted%20AI%20Assistant.json) - 本地部署的私人 AI 助理
|
||||
* [🔥📈🤖 n8n 創作者排行榜 AI 代理 - 尋找熱門工作流程](workflows/🔥📈🤖%20AI%20Agent%20for%20n8n%20Creators%20Leaderboard%20-%20Find%20Popular%20Workflows.json) - 發現熱門工作流程
|
||||
* [🚀 本地多 LLM 測試與效能追蹤器](workflows/🚀%20Local%20Multi-LLM%20Testing%20&%20Performance%20Tracker.json) - 多模型效能比較工具
|
||||
* [HR & IT 服務台聊天機器人與音訊轉錄](workflows/zmgSshZ5xESr3ozl_HR_&_IT_Helpdesk_Chatbot_with_Audio_Transcription.json) - 企業服務台解決方案
|
||||
* [旅遊助理代理](workflows/znRwva47HzXesOYk_Travel_AssistantAgent.json) - 智能旅遊規劃助手
|
||||
* [🐋DeepSeek V3 聊天與 R1 推理快速開始](workflows/🐋DeepSeek%20V3%20Chat%20&%20R1%20Reasoning%20Quick%20Start.json) - DeepSeek V3 模型使用指南
|
||||
* [使用 LangChain 和 Gemini 建構自訂 AI 代理(自主託管)](workflows/yCIEiv9QUHP8pNfR_Build_Custom_AI_Agent_with_LangChain_&_Gemini_(Self-Hosted).json) - 自訂 AI 代理建構指南
|
||||
* [使用 Jina.ai 網頁爬蟲的 AI 代理聊天機器人](workflows/xEij0kj2I1DHbL3I_🌐🪛_AI_Agent_Chatbot_with_Jina.ai_Webpage_Scraper.json) - 網頁內容理解聊天機器人
|
||||
* [WhatsApp 文字、語音、圖片和 PDF AI 聊天機器人](workflows/zMtPPjJ80JJznrJP_AI-Powered_WhatsApp_Chatbot_for_Text,_Voice,_Images_&_PDFs.json) - 全功能 WhatsApp 助手
|
||||
* [Line 聊天機器人使用 Groq 和 Llama3 處理 AI 回應](workflows/xibc6WDU53isYN1o_Line_Chatbot_Handling_AI_Responses_with_Groq_and_Llama3.json) - Line 平台聊天機器人
|
||||
* [Microsoft Outlook AI 電子郵件助理](workflows/reQhibpNwU63Y8sn_Microsoft_Outlook_AI_Email_Assistant.json) - 智能郵件處理助手
|
||||
* [電子郵件 AI 自動回覆器。總結並發送電子郵件](workflows/q8IFGLeOCGSfoWZu_Email_AI_Auto-responder._Summerize_and_send_email.json) - 智能郵件自動回覆
|
||||
* [Discord MCP 聊天代理](workflows/xRclXA5QzrT3c6U8_Discord_MCP_Chat_Agent.json) - Discord 聊天機器人
|
||||
* [Hubspot 聊天助理使用 OpenAI 和 Airtable](workflows/vAssistant%20for%20Hubspot%20Chat%20using%20OpenAi%20and%20Airtable.json) - CRM 整合聊天助手
|
||||
|
||||
### 📊 內容創作與分析
|
||||
|
||||
* [📚 使用 GPT 和 Docsify 自動生成 n8n 工作流程文件](workflows/📚%20Auto-generate%20documentation%20for%20n8n%20workflows%20with%20GPT%20and%20Docsify.json) - 自動文件生成
|
||||
* [🔍 Perplexity 研究轉 HTML:AI 驅動的內容創作](workflows/🔍%20Perplexity%20Research%20to%20HTML_%20AI-Powered%20Content%20Creation.json) - 研究內容轉換
|
||||
* [⚡AI 驅動的 YouTube 影片摘要與分析](workflows/⚡AI-Powered%20YouTube%20Video%20Summarization%20&%20Analysis.json) - 影片內容分析
|
||||
* [🎨 使用 FLUX.1 填充工具的互動式圖片編輯器](workflows/🎨%20Interactive%20Image%20Editor%20with%20FLUX.1%20Fill%20Tool%20for%20Inpainting.json) - AI 圖片編輯
|
||||
* [將 YouTube 影片轉換為摘要、轉錄和視覺洞察](workflows/wZBgoWrBZveMmzYi_Turn_YouTube_Videos_into_Summaries,_Transcripts,_and_Visual_Insights.json) - 影片內容分析
|
||||
* [YouTube 評論情感分析器](workflows/xaC6zL4bWBo14xyJ_YouTube_Comment_Sentiment_Analyzer.json) - 評論情感分析
|
||||
* [WordPress 部落格文章 AI 自動標記](workflows/siXUnQhJpCJ9rHzu_Auto-Tag_Blog_Posts_in_WordPress_with_AI.json) - 內容標記自動化
|
||||
* [🎦💌進階 YouTube RSS 訂閱好幫手](workflows/tHgDFmFyuj6DnP6l_🎦💌Advanced_YouTube_RSS_Feed_Buddy_for_Your_Favorite_Channels.json) - YouTube 內容追蹤
|
||||
* [n8n 圖形設計團隊](workflows/tnRYt0kDGMO9BBFd_n8n_Graphic_Design_Team.json) - 設計工作流程
|
||||
* [使用 Perplexity AI 搜尋新聞並發布到 X (Twitter)](workflows/v9K61fCQhrG6gt6Z_Search_news_using_Perplexity_AI_and_post_to_X_(Twitter).json) - 新聞分享自動化
|
||||
* [社群媒體發布器](workflows/r1u4HOJu5j5sP27x_Social_Media_Publisher.json) - 多平台內容發布
|
||||
* [發布到 X](workflows/plzObaqgoEvV4UU0_Post_on_X.json) - Twitter 自動發布
|
||||
* [YouTube 自動化](workflows/wLbJ7rE6vQzizCp2_Youtube_Automation.json) - YouTube 內容管理
|
||||
|
||||
### 🌐 網頁爬蟲與資料擷取
|
||||
|
||||
* [✨ 視覺基礎 AI 代理爬蟲 - 搭配 Google Sheets、ScrapingBee 和 Gemini](workflows/✨%20Vision-Based%20AI%20Agent%20Scraper%20-%20with%20Google%20Sheets,%20ScrapingBee,%20and%20Gemini.json) - 視覺化網頁爬蟲
|
||||
* [智能網頁查詢和語意重新排序流程](workflows/wa2uEnSIowqSrHoY_Intelligent_Web_Query_and_Semantic_Re-Ranking_Flow.json) - 智能搜尋排序
|
||||
* [使用 Jina.ai 的重要多頁網站爬蟲](workflows/xEij0kj2I1DHbL3I_💡🌐_Essential_Multipage_Website_Scraper_with_Jina.ai.json) - 多頁面爬蟲
|
||||
* [使用 DeepSeek 爬取 Trustpilot 評論,使用 OpenAI 分析情感](workflows/w434EiZ2z7klQAyp_Scrape_Trustpilot_Reviews_with_DeepSeek,_Analyze_Sentiment_with_OpenAI.json) - 評論情感分析
|
||||
* [使用 Bright Data 和 Gemini AI 擷取和總結維基百科資料](workflows/sczRNO4u1HYc5YV7_Extract_&_Summarize_Wikipedia_Data_with_Bright_Data_and_Gemini_AI.json) - 維基百科內容處理
|
||||
* [使用 Bright Data 和 Google Gemini 從 LinkedIn 生成公司故事](workflows/q1DorytEoEw1QLGj_Generate_Company_Stories_from_LinkedIn_with_Bright_Data_&_Google_Gemini.json) - LinkedIn 內容分析
|
||||
* [使用 Bright Data 進行品牌內容擷取、總結和情感分析](workflows/wTI77cpLkbxsRQat_Brand_Content_Extract,_Summarize_&_Sentiment_Analysis_with_Bright_Data.json) - 品牌內容分析
|
||||
* [新聞擷取](workflows/xM8Z5vZVNTNjCySL_News_Extraction.json) - 新聞內容爬蟲
|
||||
|
||||
### 📱 通訊與訊息處理
|
||||
|
||||
* [WhatsApp 入門工作流程](workflows/yxv7OYbDEnqsqfa9_WhatsApp_starter_workflow.json) - WhatsApp 基礎設定
|
||||
* [📈 從 FT.com 接收每日市場新聞到 Microsoft Outlook 收件匣](workflows/📈%20Receive%20Daily%20Market%20News%20from%20FT.com%20to%20your%20Microsoft%20outlook%20inbox.json) - 市場新聞推送
|
||||
|
||||
### 🗃️ 資料管理與同步
|
||||
|
||||
* [📦 新電子郵件 ➔ 建立 Google 任務](workflows/z0C6H2kYSgML2dib_📦_New_Email_➔_Create_Google_Task.json) - 郵件任務轉換
|
||||
* [同步 Google Sheets 與 Postgres](workflows/wDD4XugmHIvx3KMT_Synchronize_your_Google_Sheets_with_Postgres.json) - 資料庫同步
|
||||
* [從 Google Drive 同步新檔案到 Airtable](workflows/uLHpFu2ndN6ZKClZ_Sync_New_Files_From_Google_Drive_with_Airtable.json) - 檔案管理同步
|
||||
* [同步 YouTube 影片 URL 到 Google Sheets](workflows/rJNvM4vU6SLUeC1d_Sync_Youtube_Video_Urls_with_Google_Sheets.json) - 影片清單管理
|
||||
* [從 URL 匯入 CSV 到 Excel](workflows/xcl8D1sukz9Rak69_Import_CSV_from_URL_to_Excel.json) - 資料匯入
|
||||
* [自動將 CSV 檔案匯入 postgres](workflows/q8GNbRhjQDwDpXoo_How_to_automatically_import_CSV_files_into_postgres.json) - 資料庫匯入
|
||||
* [從 Google Sheets 匯入多個製造商到 Shopware 6](workflows/xLjE4IkQXARXOCZy_Import_multiple_Manufacturers_from_Google_Sheets_to_Shopware_6.json) - 電商資料匯入
|
||||
* [匯入多個 CSV 到 Google Sheet](workflows/zic2ZEHvxHR4UAYI_Import_multiple_CSV_to_GoogleSheet.json) - 批次資料匯入
|
||||
* [透過 Excel 更新角色](workflows/xzKlhjcc6QEzA98Z_Update_Roles_by_Excel.json) - 權限管理
|
||||
* [壓縮多個檔案](workflows/r3qHlCVCczqTw3pP_Zip_multiple_files.json) - 檔案打包
|
||||
* [合併多個執行成一個](workflows/ynTqojfUnGpG2rBP_Merge_multiple_runs_into_one.json) - 執行結果合併
|
||||
|
||||
### 🏢 企業與 CRM 管理
|
||||
|
||||
* [LinkedIn 自動化](workflows/yF1HNe2ucaE81fNl_Linkedin_Automation.json) - LinkedIn 行銷自動化
|
||||
* [使用 Icypeas 執行電子郵件搜尋(單次)](workflows/zAkPoRdcG5M5x4KT_Perform_an_email_search_with_Icypeas_(single).json) - 電子郵件查找
|
||||
* [會議預訂 - 到通訊和 CRM](workflows/xe9sXQUc7yW8P8im_Meeting_booked_-_to_newsletter_and_CRM.json) - 會議管理整合
|
||||
* [ICP 公司評分](workflows/xyLfWaqdIoZmbTfv_ICP_Company_Scoring.json) - 潛在客戶評分
|
||||
* [ProspectLens 公司研究](workflows/wwvUsosYUyMfpGbB_ProspectLens_company_research.json) - 客戶研究
|
||||
* [HR 重點自動化流程與 AI](workflows/t1P14FvfibKYCh3E_HR-focused_automation_pipeline_with_AI.json) - 人力資源自動化
|
||||
* [CV 評估 - 錯誤處理](workflows/vnhhf9aNsw0kzdBV_CV_Evaluation_-_Error_Handling.json) - 履歷評估系統
|
||||
* [使用 AI 發現職場歧視模式](workflows/vzU9QRZsHcyRsord_Spot_Workplace_Discrimination_Patterns_with_AI.json) - 職場分析工具
|
||||
|
||||
### 🔧 開發與維運工具
|
||||
|
||||
* [在 n8n 實例之間複製工作流程使用 n8n API](workflows/yOhH9SGiZgZTDUB4_Clone_n8n_Workflows_between_Instances_using_n8n_API.json) - 工作流程遷移
|
||||
* [憑證轉移](workflows/tlnJNm9t5H3VLU5K_Credentials_Transfer.json) - 憑證管理
|
||||
* [[OPS] 從 GitHub 恢復工作流程到 n8n](workflows/uoBZx3eMvLMxlHCS_[OPS]_Restore_workflows_from_GitHub_to_n8n.json) - 工作流程備份恢復
|
||||
* [工作流程節點更新檢查範本的附加元件](workflows/xlMrGt0c1eFi4J1U_Addon_for_Workflow_Nodes_Update_Check_Template.json) - 更新檢查工具
|
||||
* [尋找受影響表達式的參數助手](workflows/zlHbtHIcCZ9enKwg_v1_helper_-_Find_params_with_affected_expressions.json) - 除錯工具
|
||||
* [在 n8n 中測試 Webhooks 而不更改 WEBHOOK URL](workflows/sB6dC0GZ7zZHuMGF_Test_Webhooks_in_n8n_Without_Changing_WEBHOOK_URL_(PostBin_&_BambooHR_Example).json) - Webhook 測試
|
||||
* [失敗重試除了已知錯誤範本](workflows/qAzZekQuABuH8uho_Retry_on_fail_except_for_known_error_Template.json) - 錯誤處理
|
||||
* [網頁伺服器監控](workflows/pcLi17oUJK9pSaee_Web_Server_Monitor..json) - 系統監控
|
||||
* [可疑登入偵測](workflows/xQHiKDTkezDY5lFu_Suspicious_login_detection.json) - 安全監控
|
||||
* [MAIA - 健康檢查](workflows/wng5xcxlYA6jFS6n_MAIA_-_Health_Check.json) - 系統健康監控
|
||||
* [追蹤工作時間和休息](workflows/pdgNdag49lwoTxUP_Track_Working_Time_and_Pauses.json) - 時間管理
|
||||
* [基於位置觸發的自動化工作考勤](workflows/x2kgOnBLtqAjqUVS_Automated_Work_Attendance_with_Location_Triggers.json) - 考勤系統
|
||||
|
||||
### 🔌 API 與整合服務
|
||||
|
||||
* [OIDC 客戶端工作流程](workflows/zeyTmqqmXaQIFWzV_OIDC_client_workflow.json) - 身份驗證整合
|
||||
* [使用 HttpRequest 節點透過 XMLRPC 發布到 Wordpress.com](workflows/yPIST7l13huQEjY5_Use_XMLRPC_via_HttpRequest-node_to_post_on_Wordpress.com.json) - WordPress 整合
|
||||
* [圖片生成 API](workflows/wDD4XugmHIvx3KMT_Image_Generation_API.json) - 圖片生成服務
|
||||
* [使用 Kling API 為服裝生成 360° 虛擬試穿影片](workflows/xQ0xqhNzFeEdBpFK_Generate_360°_Virtual_Try-on_Videos_for_Clothing_with_Kling_API.json) - 虛擬試穿
|
||||
* [使用 Google 腳本上傳影片到雲端硬碟](workflows/wGv0NPBA0QLp4rQ6_Upload_video_to_drive_via_google_script.json) - 檔案上傳
|
||||
* [反應 PDFMonkey 回調](workflows/s6nTFZfg6xjWyJRX_React_to_PDFMonkey_Callback.json) - PDF 處理回調
|
||||
* [上傳發布圖片](workflows/ra8MrqshnzXPy55O_upload-post_images.json) - 圖片上傳
|
||||
* [Luma AI - Webhook 回應 v1 - AK](workflows/rYuhIChQyjpGNvuR_Luma_AI_-_Webhook_Response_v1_-_AK.json) - AI 服務整合
|
||||
|
||||
### 📈 分析與報告
|
||||
|
||||
* [OpenSea 分析代理工具](workflows/yRMCUm6oJEMknhbw_OpenSea_Analytics_Agent_Tool.json) - NFT 市場分析
|
||||
* [OpenSea AI 驅動的 Telegram 洞察](workflows/wi2ZWKN9XPR0jkvn_OpenSea_AI-Powered_Insights_via_Telegram.json) - NFT 市場智能分析
|
||||
* [SERPBear 分析範本](workflows/qmmXKcpJOCm9qaCk_SERPBear_analytics_template.json) - SEO 分析
|
||||
* [Google Maps 完整版](workflows/qhZvZVCoV3HLjRkq_Google_Maps_FULL.json) - 地圖服務整合
|
||||
* [擷取 Squarespace 部落格和活動集合到 Google Sheets](workflows/sUGieRWulZJ7scll_Fetch_Squarespace_Blog_&_Event_Collections_to_Google_Sheets__.json) - 內容分析
|
||||
|
||||
### 🎯 專業領域應用
|
||||
|
||||
* [使用 Gmail 和 Mailjet 將 Netflix 電子郵件轉發到多個電子郵件地址](workflows/pkw1vY5q1p2nNfNC_Forward_Netflix_emails_to_multiple_email_addresses_with_GMail_and_Mailjet.json) - 郵件轉發
|
||||
* [Namesilo 批次域名可用性檢查 [範本]](workflows/phqg5Kk3YowxoMHQ_Namesilo_Bulk_Domain_Availability_[Template].json) - 域名檢查
|
||||
* [HDW Lead Geländewagen](workflows/piapgd2e6zmzFxAq_HDW_Lead_Geländewagen.json) - 專業業務流程
|
||||
* [n8n-農產品](workflows/ziJG3tgG91Gkbina_n8n-農產品.json) - 農業應用
|
||||
* [一般 3D 簡報](workflows/vpZ1wpsniCvKYjCF_General_3D_Presentation.json) - 3D 內容處理
|
||||
* [翻譯](workflows/vssVsRO0FW6InbaY_Translate.json) - 多語言翻譯
|
||||
* [puq-docker-immich-deploy](workflows/qps97Q4NEet1Pkm4_puq-docker-immich-deploy.json) - 容器部署
|
||||
* [InstaTest](workflows/qww129cm4TM9N8Ru_InstaTest.json) - 測試自動化
|
||||
|
||||
### 🔍 文件與資料處理
|
||||
|
||||
* [使用 AI 分析螢幕截圖](workflows/wDD4XugmHIvx3KMT_Analyze_Screenshots_with_AI.json) - 圖片分析
|
||||
* [使用 Vertex AI (Gemini) 從 PDF 和圖片擷取文字到 CSV](workflows/sUIPemKdKqmUQFt6_Extract_text_from_PDF_and_image_using_Vertex_AI_(Gemini)_into_CSV.json) - 文件內容擷取
|
||||
* [從 Splunk 警報建立唯一的 Jira 票證](workflows/uD31xU0VYjogxWoY_Create_Unique_Jira_tickets_from_Splunk_alerts.json) - 事件管理
|
||||
|
||||
### 🎮 其他實用工具
|
||||
|
||||
* [我的工作流程](workflows/yYjRbTWULZuNLXM0_My_workflow.json) - 個人工作流程範例
|
||||
* [我的工作流程 6](workflows/rLoXUoKSZ4a9XUAv_My_workflow_6.json) - 個人工作流程範例 6
|
||||
* [工作流程 x2VUvhqV1YTJCIN0](workflows/x2VUvhqV1YTJCIN0_workflow_x2VUvhqV1YTJCIN0.json) - 自訂工作流程範例
|
||||
|
||||
---
|
||||
|
||||
## 🤝 貢獻
|
||||
|
||||
發現了有趣的工作流程或創建了自己的工作流程?
|
||||
歡迎貢獻到這個收藏集!
|
||||
|
||||
請確保:
|
||||
|
||||
* 使用描述性的檔案名稱
|
||||
* 如果適用,在頂部包含原始來源的簡短註釋
|
||||
|
||||
---
|
||||
|
||||
## ⚠️ 免責聲明
|
||||
|
||||
此處的所有工作流程都是**按原樣**分享。
|
||||
在生產環境中使用之前,請務必在安全環境中檢查和測試它們。
|
||||
|
||||
---
|
||||
|
||||
## 📊 統計資訊
|
||||
|
||||
* **總工作流程數量**:107 個
|
||||
* **主要類別**:AI 智能代理、內容創作、資料管理、企業應用、開發工具
|
||||
* **支援的服務**:Telegram、WhatsApp、OpenAI、Google Sheets、n8n API、WordPress 等
|
||||
|
||||
---
|
||||
|
||||
*最後更新:2024年12月*
|
||||
408
api_server.py
Normal file
408
api_server.py
Normal file
@@ -0,0 +1,408 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
FastAPI Server for N8N Workflow Documentation
|
||||
High-performance API with sub-100ms response times.
|
||||
"""
|
||||
|
||||
from fastapi import FastAPI, HTTPException, Query, BackgroundTasks
|
||||
from fastapi.staticfiles import StaticFiles
|
||||
from fastapi.responses import HTMLResponse, FileResponse, JSONResponse
|
||||
from fastapi.middleware.cors import CORSMiddleware
|
||||
from fastapi.middleware.gzip import GZipMiddleware
|
||||
from pydantic import BaseModel, validator
|
||||
from typing import Optional, List, Dict, Any
|
||||
import json
|
||||
import os
|
||||
import asyncio
|
||||
from pathlib import Path
|
||||
import uvicorn
|
||||
|
||||
from workflow_db import WorkflowDatabase
|
||||
|
||||
# Initialize FastAPI app
|
||||
app = FastAPI(
|
||||
title="N8N Workflow Documentation API",
|
||||
description="Fast API for browsing and searching workflow documentation",
|
||||
version="2.0.0"
|
||||
)
|
||||
|
||||
# Add middleware for performance
|
||||
app.add_middleware(GZipMiddleware, minimum_size=1000)
|
||||
app.add_middleware(
|
||||
CORSMiddleware,
|
||||
allow_origins=["*"],
|
||||
allow_credentials=True,
|
||||
allow_methods=["*"],
|
||||
allow_headers=["*"],
|
||||
)
|
||||
|
||||
# Initialize database
|
||||
db = WorkflowDatabase()
|
||||
|
||||
# Response models
|
||||
class WorkflowSummary(BaseModel):
|
||||
id: Optional[int] = None
|
||||
filename: str
|
||||
name: str
|
||||
active: bool
|
||||
description: str = ""
|
||||
trigger_type: str = "Manual"
|
||||
complexity: str = "low"
|
||||
node_count: int = 0
|
||||
integrations: List[str] = []
|
||||
tags: List[str] = []
|
||||
created_at: Optional[str] = None
|
||||
updated_at: Optional[str] = None
|
||||
|
||||
class Config:
|
||||
# Allow conversion of int to bool for active field
|
||||
validate_assignment = True
|
||||
|
||||
@validator('active', pre=True)
|
||||
def convert_active(cls, v):
|
||||
if isinstance(v, int):
|
||||
return bool(v)
|
||||
return v
|
||||
|
||||
|
||||
class SearchResponse(BaseModel):
|
||||
workflows: List[WorkflowSummary]
|
||||
total: int
|
||||
page: int
|
||||
per_page: int
|
||||
pages: int
|
||||
query: str
|
||||
filters: Dict[str, Any]
|
||||
|
||||
class StatsResponse(BaseModel):
|
||||
total: int
|
||||
active: int
|
||||
inactive: int
|
||||
triggers: Dict[str, int]
|
||||
complexity: Dict[str, int]
|
||||
total_nodes: int
|
||||
unique_integrations: int
|
||||
last_indexed: str
|
||||
|
||||
@app.get("/")
|
||||
async def root():
|
||||
"""Serve the main documentation page."""
|
||||
static_dir = Path("static")
|
||||
index_file = static_dir / "index.html"
|
||||
if not index_file.exists():
|
||||
return HTMLResponse("""
|
||||
<html><body>
|
||||
<h1>Setup Required</h1>
|
||||
<p>Static files not found. Please ensure the static directory exists with index.html</p>
|
||||
<p>Current directory: """ + str(Path.cwd()) + """</p>
|
||||
</body></html>
|
||||
""")
|
||||
return FileResponse(str(index_file))
|
||||
|
||||
@app.get("/health")
|
||||
async def health_check():
|
||||
"""Health check endpoint."""
|
||||
return {"status": "healthy", "message": "N8N Workflow API is running"}
|
||||
|
||||
@app.get("/api/stats", response_model=StatsResponse)
|
||||
async def get_stats():
|
||||
"""Get workflow database statistics."""
|
||||
try:
|
||||
stats = db.get_stats()
|
||||
return StatsResponse(**stats)
|
||||
except Exception as e:
|
||||
raise HTTPException(status_code=500, detail=f"Error fetching stats: {str(e)}")
|
||||
|
||||
@app.get("/api/workflows", response_model=SearchResponse)
|
||||
async def search_workflows(
|
||||
q: str = Query("", description="Search query"),
|
||||
trigger: str = Query("all", description="Filter by trigger type"),
|
||||
complexity: str = Query("all", description="Filter by complexity"),
|
||||
active_only: bool = Query(False, description="Show only active workflows"),
|
||||
page: int = Query(1, ge=1, description="Page number"),
|
||||
per_page: int = Query(20, ge=1, le=100, description="Items per page")
|
||||
):
|
||||
"""Search and filter workflows with pagination."""
|
||||
try:
|
||||
offset = (page - 1) * per_page
|
||||
|
||||
workflows, total = db.search_workflows(
|
||||
query=q,
|
||||
trigger_filter=trigger,
|
||||
complexity_filter=complexity,
|
||||
active_only=active_only,
|
||||
limit=per_page,
|
||||
offset=offset
|
||||
)
|
||||
|
||||
# Convert to Pydantic models with error handling
|
||||
workflow_summaries = []
|
||||
for workflow in workflows:
|
||||
try:
|
||||
# Remove extra fields that aren't in the model
|
||||
clean_workflow = {
|
||||
'id': workflow.get('id'),
|
||||
'filename': workflow.get('filename', ''),
|
||||
'name': workflow.get('name', ''),
|
||||
'active': workflow.get('active', False),
|
||||
'description': workflow.get('description', ''),
|
||||
'trigger_type': workflow.get('trigger_type', 'Manual'),
|
||||
'complexity': workflow.get('complexity', 'low'),
|
||||
'node_count': workflow.get('node_count', 0),
|
||||
'integrations': workflow.get('integrations', []),
|
||||
'tags': workflow.get('tags', []),
|
||||
'created_at': workflow.get('created_at'),
|
||||
'updated_at': workflow.get('updated_at')
|
||||
}
|
||||
workflow_summaries.append(WorkflowSummary(**clean_workflow))
|
||||
except Exception as e:
|
||||
print(f"Error converting workflow {workflow.get('filename', 'unknown')}: {e}")
|
||||
# Continue with other workflows instead of failing completely
|
||||
continue
|
||||
|
||||
pages = (total + per_page - 1) // per_page # Ceiling division
|
||||
|
||||
return SearchResponse(
|
||||
workflows=workflow_summaries,
|
||||
total=total,
|
||||
page=page,
|
||||
per_page=per_page,
|
||||
pages=pages,
|
||||
query=q,
|
||||
filters={
|
||||
"trigger": trigger,
|
||||
"complexity": complexity,
|
||||
"active_only": active_only
|
||||
}
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(status_code=500, detail=f"Error searching workflows: {str(e)}")
|
||||
|
||||
@app.get("/api/workflows/{filename}")
|
||||
async def get_workflow_detail(filename: str):
|
||||
"""Get detailed workflow information including raw JSON."""
|
||||
try:
|
||||
# Get workflow metadata from database
|
||||
workflows, _ = db.search_workflows(f'filename:"{filename}"', limit=1)
|
||||
if not workflows:
|
||||
raise HTTPException(status_code=404, detail="Workflow not found")
|
||||
|
||||
workflow_meta = workflows[0]
|
||||
|
||||
# Load raw JSON from file
|
||||
file_path = os.path.join("workflows", filename)
|
||||
if not os.path.exists(file_path):
|
||||
raise HTTPException(status_code=404, detail="Workflow file not found")
|
||||
|
||||
with open(file_path, 'r', encoding='utf-8') as f:
|
||||
raw_json = json.load(f)
|
||||
|
||||
return {
|
||||
"metadata": workflow_meta,
|
||||
"raw_json": raw_json
|
||||
}
|
||||
except HTTPException:
|
||||
raise
|
||||
except Exception as e:
|
||||
raise HTTPException(status_code=500, detail=f"Error loading workflow: {str(e)}")
|
||||
|
||||
@app.get("/api/workflows/{filename}/download")
|
||||
async def download_workflow(filename: str):
|
||||
"""Download workflow JSON file."""
|
||||
file_path = os.path.join("workflows", filename)
|
||||
if not os.path.exists(file_path):
|
||||
raise HTTPException(status_code=404, detail="Workflow file not found")
|
||||
|
||||
return FileResponse(
|
||||
file_path,
|
||||
media_type="application/json",
|
||||
filename=filename
|
||||
)
|
||||
|
||||
@app.get("/api/workflows/{filename}/diagram")
|
||||
async def get_workflow_diagram(filename: str):
|
||||
"""Get Mermaid diagram code for workflow visualization."""
|
||||
try:
|
||||
file_path = os.path.join("workflows", filename)
|
||||
if not os.path.exists(file_path):
|
||||
raise HTTPException(status_code=404, detail="Workflow file not found")
|
||||
|
||||
with open(file_path, 'r', encoding='utf-8') as f:
|
||||
data = json.load(f)
|
||||
|
||||
nodes = data.get('nodes', [])
|
||||
connections = data.get('connections', {})
|
||||
|
||||
# Generate Mermaid diagram
|
||||
diagram = generate_mermaid_diagram(nodes, connections)
|
||||
|
||||
return {"diagram": diagram}
|
||||
except Exception as e:
|
||||
raise HTTPException(status_code=500, detail=f"Error generating diagram: {str(e)}")
|
||||
|
||||
def generate_mermaid_diagram(nodes: List[Dict], connections: Dict) -> str:
|
||||
"""Generate Mermaid.js flowchart code from workflow nodes and connections."""
|
||||
if not nodes:
|
||||
return "graph TD\n EmptyWorkflow[No nodes found in workflow]"
|
||||
|
||||
# Create mapping for node names to ensure valid mermaid IDs
|
||||
mermaid_ids = {}
|
||||
for i, node in enumerate(nodes):
|
||||
node_id = f"node{i}"
|
||||
node_name = node.get('name', f'Node {i}')
|
||||
mermaid_ids[node_name] = node_id
|
||||
|
||||
# Start building the mermaid diagram
|
||||
mermaid_code = ["graph TD"]
|
||||
|
||||
# Add nodes with styling
|
||||
for node in nodes:
|
||||
node_name = node.get('name', 'Unnamed')
|
||||
node_id = mermaid_ids[node_name]
|
||||
node_type = node.get('type', '').replace('n8n-nodes-base.', '')
|
||||
|
||||
# Determine node style based on type
|
||||
style = ""
|
||||
if any(x in node_type.lower() for x in ['trigger', 'webhook', 'cron']):
|
||||
style = "fill:#b3e0ff,stroke:#0066cc" # Blue for triggers
|
||||
elif any(x in node_type.lower() for x in ['if', 'switch']):
|
||||
style = "fill:#ffffb3,stroke:#e6e600" # Yellow for conditional nodes
|
||||
elif any(x in node_type.lower() for x in ['function', 'code']):
|
||||
style = "fill:#d9b3ff,stroke:#6600cc" # Purple for code nodes
|
||||
elif 'error' in node_type.lower():
|
||||
style = "fill:#ffb3b3,stroke:#cc0000" # Red for error handlers
|
||||
else:
|
||||
style = "fill:#d9d9d9,stroke:#666666" # Gray for other nodes
|
||||
|
||||
# Add node with label (escaping special characters)
|
||||
clean_name = node_name.replace('"', "'")
|
||||
clean_type = node_type.replace('"', "'")
|
||||
label = f"{clean_name}<br>({clean_type})"
|
||||
mermaid_code.append(f" {node_id}[\"{label}\"]")
|
||||
mermaid_code.append(f" style {node_id} {style}")
|
||||
|
||||
# Add connections between nodes
|
||||
for source_name, source_connections in connections.items():
|
||||
if source_name not in mermaid_ids:
|
||||
continue
|
||||
|
||||
if isinstance(source_connections, dict) and 'main' in source_connections:
|
||||
main_connections = source_connections['main']
|
||||
|
||||
for i, output_connections in enumerate(main_connections):
|
||||
if not isinstance(output_connections, list):
|
||||
continue
|
||||
|
||||
for connection in output_connections:
|
||||
if not isinstance(connection, dict) or 'node' not in connection:
|
||||
continue
|
||||
|
||||
target_name = connection['node']
|
||||
if target_name not in mermaid_ids:
|
||||
continue
|
||||
|
||||
# Add arrow with output index if multiple outputs
|
||||
label = f" -->|{i}| " if len(main_connections) > 1 else " --> "
|
||||
mermaid_code.append(f" {mermaid_ids[source_name]}{label}{mermaid_ids[target_name]}")
|
||||
|
||||
# Format the final mermaid diagram code
|
||||
return "\n".join(mermaid_code)
|
||||
|
||||
@app.post("/api/reindex")
|
||||
async def reindex_workflows(background_tasks: BackgroundTasks, force: bool = False):
|
||||
"""Trigger workflow reindexing in the background."""
|
||||
def run_indexing():
|
||||
db.index_all_workflows(force_reindex=force)
|
||||
|
||||
background_tasks.add_task(run_indexing)
|
||||
return {"message": "Reindexing started in background"}
|
||||
|
||||
@app.get("/api/integrations")
|
||||
async def get_integrations():
|
||||
"""Get list of all unique integrations."""
|
||||
try:
|
||||
stats = db.get_stats()
|
||||
# For now, return basic info. Could be enhanced to return detailed integration stats
|
||||
return {"integrations": [], "count": stats['unique_integrations']}
|
||||
except Exception as e:
|
||||
raise HTTPException(status_code=500, detail=f"Error fetching integrations: {str(e)}")
|
||||
|
||||
# Custom exception handler for better error responses
|
||||
@app.exception_handler(Exception)
|
||||
async def global_exception_handler(request, exc):
|
||||
return JSONResponse(
|
||||
status_code=500,
|
||||
content={"detail": f"Internal server error: {str(exc)}"}
|
||||
)
|
||||
|
||||
# Mount static files AFTER all routes are defined
|
||||
static_dir = Path("static")
|
||||
if static_dir.exists():
|
||||
app.mount("/static", StaticFiles(directory="static"), name="static")
|
||||
print(f"✅ Static files mounted from {static_dir.absolute()}")
|
||||
else:
|
||||
print(f"❌ Warning: Static directory not found at {static_dir.absolute()}")
|
||||
|
||||
def create_static_directory():
|
||||
"""Create static directory if it doesn't exist."""
|
||||
static_dir = Path("static")
|
||||
static_dir.mkdir(exist_ok=True)
|
||||
return static_dir
|
||||
|
||||
def run_server(host: str = "127.0.0.1", port: int = 8000, reload: bool = False):
|
||||
"""Run the FastAPI server."""
|
||||
# Ensure static directory exists
|
||||
create_static_directory()
|
||||
|
||||
# Debug: Check database connectivity
|
||||
try:
|
||||
stats = db.get_stats()
|
||||
print(f"✅ Database connected: {stats['total']} workflows found")
|
||||
if stats['total'] == 0:
|
||||
print("🔄 Database is empty. Indexing workflows...")
|
||||
db.index_all_workflows()
|
||||
stats = db.get_stats()
|
||||
except Exception as e:
|
||||
print(f"❌ Database error: {e}")
|
||||
print("🔄 Attempting to create and index database...")
|
||||
try:
|
||||
db.index_all_workflows()
|
||||
stats = db.get_stats()
|
||||
print(f"✅ Database created: {stats['total']} workflows indexed")
|
||||
except Exception as e2:
|
||||
print(f"❌ Failed to create database: {e2}")
|
||||
stats = {'total': 0}
|
||||
|
||||
# Debug: Check static files
|
||||
static_path = Path("static")
|
||||
if static_path.exists():
|
||||
files = list(static_path.glob("*"))
|
||||
print(f"✅ Static files found: {[f.name for f in files]}")
|
||||
else:
|
||||
print(f"❌ Static directory not found at: {static_path.absolute()}")
|
||||
|
||||
print(f"🚀 Starting N8N Workflow Documentation API")
|
||||
print(f"📊 Database contains {stats['total']} workflows")
|
||||
print(f"🌐 Server will be available at: http://{host}:{port}")
|
||||
print(f"📁 Static files at: http://{host}:{port}/static/")
|
||||
|
||||
uvicorn.run(
|
||||
"api_server:app",
|
||||
host=host,
|
||||
port=port,
|
||||
reload=reload,
|
||||
access_log=True, # Enable access logs for debugging
|
||||
log_level="info"
|
||||
)
|
||||
|
||||
if __name__ == "__main__":
|
||||
import argparse
|
||||
|
||||
parser = argparse.ArgumentParser(description='N8N Workflow Documentation API Server')
|
||||
parser.add_argument('--host', default='127.0.0.1', help='Host to bind to')
|
||||
parser.add_argument('--port', type=int, default=8000, help='Port to bind to')
|
||||
parser.add_argument('--reload', action='store_true', help='Enable auto-reload for development')
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
run_server(host=args.host, port=args.port, reload=args.reload)
|
||||
396
comprehensive_workflow_renamer.py
Normal file
396
comprehensive_workflow_renamer.py
Normal file
@@ -0,0 +1,396 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Comprehensive N8N Workflow Renamer
|
||||
Complete standardization of all 2053+ workflows with uniform naming convention.
|
||||
"""
|
||||
|
||||
import json
|
||||
import os
|
||||
import glob
|
||||
import re
|
||||
import shutil
|
||||
from typing import Dict, List, Any, Optional, Tuple
|
||||
from pathlib import Path
|
||||
|
||||
class ComprehensiveWorkflowRenamer:
|
||||
"""Renames ALL workflows to uniform 0001-9999 standard with intelligent analysis."""
|
||||
|
||||
def __init__(self, workflows_dir: str = "workflows"):
|
||||
self.workflows_dir = workflows_dir
|
||||
self.rename_log = []
|
||||
self.errors = []
|
||||
self.backup_dir = "workflow_backups"
|
||||
|
||||
def analyze_all_workflows(self) -> Dict[str, Any]:
|
||||
"""Analyze all workflow files and generate comprehensive rename plan."""
|
||||
if not os.path.exists(self.workflows_dir):
|
||||
print(f"❌ Workflows directory '{self.workflows_dir}' not found.")
|
||||
return {'workflows': [], 'total': 0, 'errors': []}
|
||||
|
||||
json_files = glob.glob(os.path.join(self.workflows_dir, "*.json"))
|
||||
|
||||
if not json_files:
|
||||
print(f"❌ No JSON files found in '{self.workflows_dir}' directory.")
|
||||
return {'workflows': [], 'total': 0, 'errors': []}
|
||||
|
||||
print(f"🔍 Analyzing {len(json_files)} workflow files...")
|
||||
|
||||
workflows = []
|
||||
for file_path in json_files:
|
||||
try:
|
||||
workflow_data = self._analyze_workflow_file(file_path)
|
||||
if workflow_data:
|
||||
workflows.append(workflow_data)
|
||||
except Exception as e:
|
||||
error_msg = f"Error analyzing {file_path}: {str(e)}"
|
||||
print(f"❌ {error_msg}")
|
||||
self.errors.append(error_msg)
|
||||
continue
|
||||
|
||||
# Sort by current filename for consistent numbering
|
||||
workflows.sort(key=lambda x: x['current_filename'])
|
||||
|
||||
# Assign new sequential numbers
|
||||
for i, workflow in enumerate(workflows, 1):
|
||||
workflow['new_number'] = f"{i:04d}"
|
||||
workflow['new_filename'] = self._generate_new_filename(workflow, i)
|
||||
|
||||
return {
|
||||
'workflows': workflows,
|
||||
'total': len(workflows),
|
||||
'errors': self.errors
|
||||
}
|
||||
|
||||
def _analyze_workflow_file(self, file_path: str) -> Optional[Dict[str, Any]]:
|
||||
"""Analyze a single workflow file and extract metadata for renaming."""
|
||||
try:
|
||||
with open(file_path, 'r', encoding='utf-8') as f:
|
||||
data = json.load(f)
|
||||
except (json.JSONDecodeError, UnicodeDecodeError) as e:
|
||||
print(f"❌ Error reading {file_path}: {str(e)}")
|
||||
return None
|
||||
|
||||
filename = os.path.basename(file_path)
|
||||
|
||||
# Extract workflow metadata
|
||||
workflow = {
|
||||
'current_filename': filename,
|
||||
'current_path': file_path,
|
||||
'name': data.get('name', filename.replace('.json', '')),
|
||||
'workflow_id': data.get('id', ''),
|
||||
'active': data.get('active', False),
|
||||
'nodes': data.get('nodes', []),
|
||||
'connections': data.get('connections', {}),
|
||||
'tags': data.get('tags', []),
|
||||
'created_at': data.get('createdAt', ''),
|
||||
'updated_at': data.get('updatedAt', '')
|
||||
}
|
||||
|
||||
# Analyze nodes for intelligent naming
|
||||
node_count = len(workflow['nodes'])
|
||||
workflow['node_count'] = node_count
|
||||
|
||||
# Determine complexity
|
||||
if node_count <= 5:
|
||||
complexity = 'Simple'
|
||||
elif node_count <= 15:
|
||||
complexity = 'Standard'
|
||||
else:
|
||||
complexity = 'Complex'
|
||||
workflow['complexity'] = complexity
|
||||
|
||||
# Find services and trigger type
|
||||
services, trigger_type = self._analyze_nodes(workflow['nodes'])
|
||||
workflow['services'] = list(services)
|
||||
workflow['trigger_type'] = trigger_type
|
||||
|
||||
# Determine purpose from name and nodes
|
||||
workflow['purpose'] = self._determine_purpose(workflow['name'], workflow['nodes'])
|
||||
|
||||
return workflow
|
||||
|
||||
def _analyze_nodes(self, nodes: List[Dict]) -> Tuple[set, str]:
|
||||
"""Analyze nodes to determine services and trigger type."""
|
||||
services = set()
|
||||
trigger_type = 'Manual'
|
||||
|
||||
for node in nodes:
|
||||
node_type = node.get('type', '')
|
||||
node_name = node.get('name', '')
|
||||
|
||||
# Determine trigger type
|
||||
if any(x in node_type.lower() for x in ['webhook', 'http']):
|
||||
trigger_type = 'Webhook'
|
||||
elif any(x in node_type.lower() for x in ['cron', 'schedule', 'interval']):
|
||||
trigger_type = 'Scheduled'
|
||||
elif 'trigger' in node_type.lower() and trigger_type == 'Manual':
|
||||
trigger_type = 'Triggered'
|
||||
|
||||
# Extract service names
|
||||
if node_type.startswith('n8n-nodes-base.'):
|
||||
service = node_type.replace('n8n-nodes-base.', '')
|
||||
service = service.replace('Trigger', '').replace('trigger', '')
|
||||
|
||||
# Clean up service names
|
||||
service_mapping = {
|
||||
'webhook': 'Webhook',
|
||||
'httpRequest': 'HTTP',
|
||||
'cron': 'Cron',
|
||||
'gmail': 'Gmail',
|
||||
'slack': 'Slack',
|
||||
'googleSheets': 'GoogleSheets',
|
||||
'airtable': 'Airtable',
|
||||
'notion': 'Notion',
|
||||
'telegram': 'Telegram',
|
||||
'discord': 'Discord',
|
||||
'twitter': 'Twitter',
|
||||
'github': 'GitHub',
|
||||
'hubspot': 'HubSpot',
|
||||
'salesforce': 'Salesforce',
|
||||
'stripe': 'Stripe',
|
||||
'shopify': 'Shopify',
|
||||
'trello': 'Trello',
|
||||
'asana': 'Asana',
|
||||
'clickup': 'ClickUp',
|
||||
'calendly': 'Calendly',
|
||||
'zoom': 'Zoom',
|
||||
'mattermost': 'Mattermost',
|
||||
'microsoftTeams': 'Teams',
|
||||
'googleCalendar': 'GoogleCalendar',
|
||||
'googleDrive': 'GoogleDrive',
|
||||
'dropbox': 'Dropbox',
|
||||
'onedrive': 'OneDrive',
|
||||
'aws': 'AWS',
|
||||
'azure': 'Azure',
|
||||
'googleCloud': 'GCP'
|
||||
}
|
||||
|
||||
clean_service = service_mapping.get(service, service.title())
|
||||
|
||||
# Skip utility nodes
|
||||
if clean_service not in ['Set', 'Function', 'If', 'Switch', 'Merge', 'StickyNote', 'NoOp']:
|
||||
services.add(clean_service)
|
||||
|
||||
return services, trigger_type
|
||||
|
||||
def _determine_purpose(self, name: str, nodes: List[Dict]) -> str:
|
||||
"""Determine workflow purpose from name and node analysis."""
|
||||
name_lower = name.lower()
|
||||
|
||||
# Purpose keywords mapping
|
||||
purpose_keywords = {
|
||||
'create': ['create', 'add', 'new', 'generate', 'build'],
|
||||
'update': ['update', 'modify', 'change', 'edit', 'patch'],
|
||||
'sync': ['sync', 'synchronize', 'mirror', 'replicate'],
|
||||
'send': ['send', 'email', 'message', 'notify', 'alert'],
|
||||
'import': ['import', 'load', 'fetch', 'get', 'retrieve'],
|
||||
'export': ['export', 'save', 'backup', 'archive'],
|
||||
'monitor': ['monitor', 'check', 'watch', 'track', 'status'],
|
||||
'process': ['process', 'transform', 'convert', 'parse'],
|
||||
'automate': ['automate', 'workflow', 'bot', 'automation']
|
||||
}
|
||||
|
||||
for purpose, keywords in purpose_keywords.items():
|
||||
if any(keyword in name_lower for keyword in keywords):
|
||||
return purpose.title()
|
||||
|
||||
# Default purpose based on node analysis
|
||||
return 'Automation'
|
||||
|
||||
def _generate_new_filename(self, workflow: Dict, number: int) -> str:
|
||||
"""Generate new standardized filename."""
|
||||
# Format: 0001_Service1_Service2_Purpose_Trigger.json
|
||||
|
||||
services = workflow['services'][:2] # Max 2 services in filename
|
||||
purpose = workflow['purpose']
|
||||
trigger = workflow['trigger_type']
|
||||
|
||||
# Build filename components
|
||||
parts = [f"{number:04d}"]
|
||||
|
||||
# Add services
|
||||
if services:
|
||||
parts.extend(services)
|
||||
|
||||
# Add purpose
|
||||
parts.append(purpose)
|
||||
|
||||
# Add trigger if not Manual
|
||||
if trigger != 'Manual':
|
||||
parts.append(trigger)
|
||||
|
||||
# Join and clean filename
|
||||
filename = '_'.join(parts)
|
||||
filename = re.sub(r'[^\w\-_]', '', filename) # Remove special chars
|
||||
filename = re.sub(r'_+', '_', filename) # Collapse multiple underscores
|
||||
filename = filename.strip('_') # Remove leading/trailing underscores
|
||||
|
||||
return f"{filename}.json"
|
||||
|
||||
def create_backup(self) -> bool:
|
||||
"""Create backup of current workflows directory."""
|
||||
try:
|
||||
if os.path.exists(self.backup_dir):
|
||||
shutil.rmtree(self.backup_dir)
|
||||
|
||||
shutil.copytree(self.workflows_dir, self.backup_dir)
|
||||
print(f"✅ Backup created at: {self.backup_dir}")
|
||||
return True
|
||||
except Exception as e:
|
||||
print(f"❌ Failed to create backup: {e}")
|
||||
return False
|
||||
|
||||
def execute_rename_plan(self, rename_plan: Dict[str, Any], dry_run: bool = True) -> bool:
|
||||
"""Execute the comprehensive rename plan."""
|
||||
if not rename_plan['workflows']:
|
||||
print("❌ No workflows to rename.")
|
||||
return False
|
||||
|
||||
print(f"\n{'🔍 DRY RUN - ' if dry_run else '🚀 EXECUTING - '}Renaming {rename_plan['total']} workflows")
|
||||
|
||||
if not dry_run:
|
||||
if not self.create_backup():
|
||||
print("❌ Cannot proceed without backup.")
|
||||
return False
|
||||
|
||||
success_count = 0
|
||||
|
||||
for workflow in rename_plan['workflows']:
|
||||
old_path = workflow['current_path']
|
||||
new_filename = workflow['new_filename']
|
||||
new_path = os.path.join(self.workflows_dir, new_filename)
|
||||
|
||||
# Check for filename conflicts
|
||||
if os.path.exists(new_path) and old_path != new_path:
|
||||
print(f"⚠️ Conflict: {new_filename} already exists")
|
||||
continue
|
||||
|
||||
if dry_run:
|
||||
print(f"📝 {workflow['current_filename']} → {new_filename}")
|
||||
else:
|
||||
try:
|
||||
os.rename(old_path, new_path)
|
||||
self.rename_log.append({
|
||||
'old': workflow['current_filename'],
|
||||
'new': new_filename,
|
||||
'services': workflow['services'],
|
||||
'purpose': workflow['purpose'],
|
||||
'trigger': workflow['trigger_type']
|
||||
})
|
||||
success_count += 1
|
||||
print(f"✅ {workflow['current_filename']} → {new_filename}")
|
||||
except Exception as e:
|
||||
error_msg = f"❌ Failed to rename {workflow['current_filename']}: {e}"
|
||||
print(error_msg)
|
||||
self.errors.append(error_msg)
|
||||
|
||||
if not dry_run:
|
||||
print(f"\n🎉 Rename complete: {success_count}/{rename_plan['total']} workflows renamed")
|
||||
self._save_rename_log()
|
||||
|
||||
return True
|
||||
|
||||
def _save_rename_log(self):
|
||||
"""Save detailed rename log to file."""
|
||||
log_data = {
|
||||
'timestamp': os.popen('date').read().strip(),
|
||||
'total_renamed': len(self.rename_log),
|
||||
'errors': self.errors,
|
||||
'renames': self.rename_log
|
||||
}
|
||||
|
||||
with open('workflow_rename_log.json', 'w', encoding='utf-8') as f:
|
||||
json.dump(log_data, f, indent=2, ensure_ascii=False)
|
||||
|
||||
print(f"📄 Rename log saved to: workflow_rename_log.json")
|
||||
|
||||
def generate_report(self, rename_plan: Dict[str, Any]) -> str:
|
||||
"""Generate comprehensive rename report."""
|
||||
workflows = rename_plan['workflows']
|
||||
total = rename_plan['total']
|
||||
|
||||
# Statistics
|
||||
services_count = {}
|
||||
purposes_count = {}
|
||||
triggers_count = {}
|
||||
|
||||
for workflow in workflows:
|
||||
for service in workflow['services']:
|
||||
services_count[service] = services_count.get(service, 0) + 1
|
||||
|
||||
purposes_count[workflow['purpose']] = purposes_count.get(workflow['purpose'], 0) + 1
|
||||
triggers_count[workflow['trigger_type']] = triggers_count.get(workflow['trigger_type'], 0) + 1
|
||||
|
||||
report = f"""
|
||||
# 🎯 Comprehensive Workflow Rename Plan
|
||||
|
||||
## 📊 Overview
|
||||
- **Total workflows**: {total}
|
||||
- **Naming convention**: 0001-{total:04d}_Service1_Service2_Purpose_Trigger.json
|
||||
- **Quality improvement**: 100% standardized naming
|
||||
|
||||
## 🏷️ Service Distribution
|
||||
"""
|
||||
|
||||
for service, count in sorted(services_count.items(), key=lambda x: x[1], reverse=True)[:10]:
|
||||
report += f"- **{service}**: {count} workflows\n"
|
||||
|
||||
report += f"\n## 🎯 Purpose Distribution\n"
|
||||
for purpose, count in sorted(purposes_count.items(), key=lambda x: x[1], reverse=True):
|
||||
report += f"- **{purpose}**: {count} workflows\n"
|
||||
|
||||
report += f"\n## ⚡ Trigger Distribution\n"
|
||||
for trigger, count in sorted(triggers_count.items(), key=lambda x: x[1], reverse=True):
|
||||
report += f"- **{trigger}**: {count} workflows\n"
|
||||
|
||||
report += f"""
|
||||
## 📝 Naming Examples
|
||||
"""
|
||||
|
||||
for i, workflow in enumerate(workflows[:10]):
|
||||
report += f"- `{workflow['current_filename']}` → `{workflow['new_filename']}`\n"
|
||||
|
||||
if len(workflows) > 10:
|
||||
report += f"... and {len(workflows) - 10} more workflows\n"
|
||||
|
||||
return report
|
||||
|
||||
|
||||
def main():
|
||||
"""Main execution function."""
|
||||
import argparse
|
||||
|
||||
parser = argparse.ArgumentParser(description='Comprehensive N8N Workflow Renamer')
|
||||
parser.add_argument('--analyze', action='store_true', help='Analyze all workflows and create rename plan')
|
||||
parser.add_argument('--execute', action='store_true', help='Execute the rename plan (requires --analyze first)')
|
||||
parser.add_argument('--dry-run', action='store_true', help='Show rename plan without executing')
|
||||
parser.add_argument('--report', action='store_true', help='Generate comprehensive report')
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
renamer = ComprehensiveWorkflowRenamer()
|
||||
|
||||
if args.analyze or args.dry_run or args.report:
|
||||
print("🔍 Analyzing all workflows...")
|
||||
rename_plan = renamer.analyze_all_workflows()
|
||||
|
||||
if args.report:
|
||||
report = renamer.generate_report(rename_plan)
|
||||
print(report)
|
||||
|
||||
if args.dry_run:
|
||||
renamer.execute_rename_plan(rename_plan, dry_run=True)
|
||||
|
||||
if args.execute:
|
||||
confirm = input(f"\n⚠️ This will rename {rename_plan['total']} workflows. Continue? (yes/no): ")
|
||||
if confirm.lower() == 'yes':
|
||||
renamer.execute_rename_plan(rename_plan, dry_run=False)
|
||||
else:
|
||||
print("❌ Rename cancelled.")
|
||||
|
||||
else:
|
||||
parser.print_help()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,10 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
WORKFLOW_DIR="./workflows"
|
||||
|
||||
for file in "$WORKFLOW_DIR"/*.json
|
||||
do
|
||||
echo "Importing $file..."
|
||||
npx n8n import:workflow --input="$file"
|
||||
done
|
||||
|
||||
#!/bin/bash
|
||||
|
||||
WORKFLOW_DIR="./workflows"
|
||||
|
||||
for file in "$WORKFLOW_DIR"/*.json
|
||||
do
|
||||
echo "Importing $file..."
|
||||
npx n8n import:workflow --input="$file"
|
||||
done
|
||||
|
||||
|
||||
3
requirements.txt
Normal file
3
requirements.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
pydantic==2.5.0
|
||||
72
setup_fast_docs.py
Normal file
72
setup_fast_docs.py
Normal file
@@ -0,0 +1,72 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Setup script for the new fast N8N workflow documentation system.
|
||||
"""
|
||||
|
||||
import subprocess
|
||||
import sys
|
||||
import os
|
||||
from pathlib import Path
|
||||
|
||||
def run_command(command, description):
|
||||
"""Run a shell command and handle errors."""
|
||||
print(f"🔄 {description}...")
|
||||
try:
|
||||
result = subprocess.run(command, shell=True, check=True, capture_output=True, text=True)
|
||||
print(f"✅ {description} completed successfully")
|
||||
return result.stdout
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"❌ {description} failed: {e.stderr}")
|
||||
return None
|
||||
|
||||
def install_dependencies():
|
||||
"""Install Python dependencies."""
|
||||
return run_command(
|
||||
f"{sys.executable} -m pip install -r requirements.txt",
|
||||
"Installing Python dependencies"
|
||||
)
|
||||
|
||||
def index_workflows():
|
||||
"""Index all workflows into the database."""
|
||||
return run_command(
|
||||
f"{sys.executable} workflow_db.py --index",
|
||||
"Indexing workflow files into database"
|
||||
)
|
||||
|
||||
def main():
|
||||
print("🚀 Setting up N8N Fast Workflow Documentation System")
|
||||
print("=" * 60)
|
||||
|
||||
# Check if we're in the right directory
|
||||
if not os.path.exists("workflows"):
|
||||
print("❌ Error: 'workflows' directory not found. Please run this script from the repository root.")
|
||||
sys.exit(1)
|
||||
|
||||
# Install dependencies
|
||||
if install_dependencies() is None:
|
||||
print("❌ Failed to install dependencies. Please install manually:")
|
||||
print(" pip install fastapi uvicorn pydantic")
|
||||
sys.exit(1)
|
||||
|
||||
# Index workflows
|
||||
if index_workflows() is None:
|
||||
print("⚠️ Warning: Failed to index workflows. You can do this manually later:")
|
||||
print(" python workflow_db.py --index")
|
||||
|
||||
print("\n🎉 Setup completed successfully!")
|
||||
print("\n📊 Performance Comparison:")
|
||||
print(" Old system: 71MB HTML file, 10s+ load time")
|
||||
print(" New system: <100KB initial load, <100ms search")
|
||||
print("\n🚀 To start the fast documentation server:")
|
||||
print(" python api_server.py")
|
||||
print("\n🌐 Then open: http://localhost:8000")
|
||||
print("\n💡 Features:")
|
||||
print(" • Instant search with <100ms response times")
|
||||
print(" • Virtual scrolling for smooth browsing")
|
||||
print(" • Real-time filtering and pagination")
|
||||
print(" • Lazy-loaded diagrams and JSON viewing")
|
||||
print(" • Dark/light theme support")
|
||||
print(" • Mobile-responsive design")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
1252
static/index.html
Normal file
1252
static/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1070834
workflow-documentation.html
1070834
workflow-documentation.html
File diff suppressed because one or more lines are too long
487
workflow_db.py
Normal file
487
workflow_db.py
Normal file
@@ -0,0 +1,487 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Fast N8N Workflow Database
|
||||
SQLite-based workflow indexer and search engine for instant performance.
|
||||
"""
|
||||
|
||||
import sqlite3
|
||||
import json
|
||||
import os
|
||||
import glob
|
||||
import datetime
|
||||
import hashlib
|
||||
from typing import Dict, List, Any, Optional, Tuple
|
||||
from pathlib import Path
|
||||
|
||||
class WorkflowDatabase:
|
||||
"""High-performance SQLite database for workflow metadata and search."""
|
||||
|
||||
def __init__(self, db_path: str = "workflows.db"):
|
||||
self.db_path = db_path
|
||||
self.workflows_dir = "workflows"
|
||||
self.init_database()
|
||||
|
||||
def init_database(self):
|
||||
"""Initialize SQLite database with optimized schema and indexes."""
|
||||
conn = sqlite3.connect(self.db_path)
|
||||
conn.execute("PRAGMA journal_mode=WAL") # Write-ahead logging for performance
|
||||
conn.execute("PRAGMA synchronous=NORMAL")
|
||||
conn.execute("PRAGMA cache_size=10000")
|
||||
conn.execute("PRAGMA temp_store=MEMORY")
|
||||
|
||||
# Create main workflows table
|
||||
conn.execute("""
|
||||
CREATE TABLE IF NOT EXISTS workflows (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
filename TEXT UNIQUE NOT NULL,
|
||||
name TEXT NOT NULL,
|
||||
workflow_id TEXT,
|
||||
active BOOLEAN DEFAULT 0,
|
||||
description TEXT,
|
||||
trigger_type TEXT,
|
||||
complexity TEXT,
|
||||
node_count INTEGER DEFAULT 0,
|
||||
integrations TEXT, -- JSON array
|
||||
tags TEXT, -- JSON array
|
||||
created_at TEXT,
|
||||
updated_at TEXT,
|
||||
file_hash TEXT,
|
||||
file_size INTEGER,
|
||||
analyzed_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
||||
)
|
||||
""")
|
||||
|
||||
# Create FTS5 table for full-text search
|
||||
conn.execute("""
|
||||
CREATE VIRTUAL TABLE IF NOT EXISTS workflows_fts USING fts5(
|
||||
filename,
|
||||
name,
|
||||
description,
|
||||
integrations,
|
||||
tags,
|
||||
content=workflows,
|
||||
content_rowid=id
|
||||
)
|
||||
""")
|
||||
|
||||
# Create indexes for fast filtering
|
||||
conn.execute("CREATE INDEX IF NOT EXISTS idx_trigger_type ON workflows(trigger_type)")
|
||||
conn.execute("CREATE INDEX IF NOT EXISTS idx_complexity ON workflows(complexity)")
|
||||
conn.execute("CREATE INDEX IF NOT EXISTS idx_active ON workflows(active)")
|
||||
conn.execute("CREATE INDEX IF NOT EXISTS idx_node_count ON workflows(node_count)")
|
||||
conn.execute("CREATE INDEX IF NOT EXISTS idx_filename ON workflows(filename)")
|
||||
|
||||
# Create triggers to keep FTS table in sync
|
||||
conn.execute("""
|
||||
CREATE TRIGGER IF NOT EXISTS workflows_ai AFTER INSERT ON workflows BEGIN
|
||||
INSERT INTO workflows_fts(rowid, filename, name, description, integrations, tags)
|
||||
VALUES (new.id, new.filename, new.name, new.description, new.integrations, new.tags);
|
||||
END
|
||||
""")
|
||||
|
||||
conn.execute("""
|
||||
CREATE TRIGGER IF NOT EXISTS workflows_ad AFTER DELETE ON workflows BEGIN
|
||||
INSERT INTO workflows_fts(workflows_fts, rowid, filename, name, description, integrations, tags)
|
||||
VALUES ('delete', old.id, old.filename, old.name, old.description, old.integrations, old.tags);
|
||||
END
|
||||
""")
|
||||
|
||||
conn.execute("""
|
||||
CREATE TRIGGER IF NOT EXISTS workflows_au AFTER UPDATE ON workflows BEGIN
|
||||
INSERT INTO workflows_fts(workflows_fts, rowid, filename, name, description, integrations, tags)
|
||||
VALUES ('delete', old.id, old.filename, old.name, old.description, old.integrations, old.tags);
|
||||
INSERT INTO workflows_fts(rowid, filename, name, description, integrations, tags)
|
||||
VALUES (new.id, new.filename, new.name, new.description, new.integrations, new.tags);
|
||||
END
|
||||
""")
|
||||
|
||||
conn.commit()
|
||||
conn.close()
|
||||
|
||||
def get_file_hash(self, file_path: str) -> str:
|
||||
"""Get MD5 hash of file for change detection."""
|
||||
hash_md5 = hashlib.md5()
|
||||
with open(file_path, "rb") as f:
|
||||
for chunk in iter(lambda: f.read(4096), b""):
|
||||
hash_md5.update(chunk)
|
||||
return hash_md5.hexdigest()
|
||||
|
||||
def analyze_workflow_file(self, file_path: str) -> Optional[Dict[str, Any]]:
|
||||
"""Analyze a single workflow file and extract metadata."""
|
||||
try:
|
||||
with open(file_path, 'r', encoding='utf-8') as f:
|
||||
data = json.load(f)
|
||||
except (json.JSONDecodeError, UnicodeDecodeError) as e:
|
||||
print(f"Error reading {file_path}: {str(e)}")
|
||||
return None
|
||||
|
||||
filename = os.path.basename(file_path)
|
||||
file_size = os.path.getsize(file_path)
|
||||
file_hash = self.get_file_hash(file_path)
|
||||
|
||||
# Extract basic metadata
|
||||
workflow = {
|
||||
'filename': filename,
|
||||
'name': data.get('name', filename.replace('.json', '')),
|
||||
'workflow_id': data.get('id', ''),
|
||||
'active': data.get('active', False),
|
||||
'nodes': data.get('nodes', []),
|
||||
'connections': data.get('connections', {}),
|
||||
'tags': data.get('tags', []),
|
||||
'created_at': data.get('createdAt', ''),
|
||||
'updated_at': data.get('updatedAt', ''),
|
||||
'file_hash': file_hash,
|
||||
'file_size': file_size
|
||||
}
|
||||
|
||||
# Analyze nodes
|
||||
node_count = len(workflow['nodes'])
|
||||
workflow['node_count'] = node_count
|
||||
|
||||
# Determine complexity
|
||||
if node_count <= 5:
|
||||
complexity = 'low'
|
||||
elif node_count <= 15:
|
||||
complexity = 'medium'
|
||||
else:
|
||||
complexity = 'high'
|
||||
workflow['complexity'] = complexity
|
||||
|
||||
# Find trigger type and integrations
|
||||
trigger_type, integrations = self.analyze_nodes(workflow['nodes'])
|
||||
workflow['trigger_type'] = trigger_type
|
||||
workflow['integrations'] = list(integrations)
|
||||
|
||||
# Generate description
|
||||
workflow['description'] = self.generate_description(workflow, trigger_type, integrations)
|
||||
|
||||
return workflow
|
||||
|
||||
def analyze_nodes(self, nodes: List[Dict]) -> Tuple[str, set]:
|
||||
"""Analyze nodes to determine trigger type and integrations."""
|
||||
trigger_type = 'Manual'
|
||||
integrations = set()
|
||||
|
||||
for node in nodes:
|
||||
node_type = node.get('type', '')
|
||||
node_name = node.get('name', '')
|
||||
|
||||
# Determine trigger type
|
||||
if 'webhook' in node_type.lower() or 'webhook' in node_name.lower():
|
||||
trigger_type = 'Webhook'
|
||||
elif 'cron' in node_type.lower() or 'schedule' in node_type.lower():
|
||||
trigger_type = 'Scheduled'
|
||||
elif 'trigger' in node_type.lower() and trigger_type == 'Manual':
|
||||
if 'manual' not in node_type.lower():
|
||||
trigger_type = 'Webhook'
|
||||
|
||||
# Extract integrations
|
||||
if node_type.startswith('n8n-nodes-base.'):
|
||||
service = node_type.replace('n8n-nodes-base.', '')
|
||||
service = service.replace('Trigger', '').replace('trigger', '')
|
||||
if service and service not in ['set', 'function', 'if', 'switch', 'merge', 'stickyNote']:
|
||||
integrations.add(service.title())
|
||||
|
||||
# Determine if complex based on node variety and count
|
||||
if len(nodes) > 10 and len(integrations) > 3:
|
||||
trigger_type = 'Complex'
|
||||
|
||||
return trigger_type, integrations
|
||||
|
||||
def generate_description(self, workflow: Dict, trigger_type: str, integrations: set) -> str:
|
||||
"""Generate a descriptive summary of the workflow."""
|
||||
name = workflow['name']
|
||||
node_count = workflow['node_count']
|
||||
|
||||
# Start with trigger description
|
||||
trigger_descriptions = {
|
||||
'Webhook': "Webhook-triggered automation that",
|
||||
'Scheduled': "Scheduled automation that",
|
||||
'Complex': "Complex multi-step automation that",
|
||||
}
|
||||
desc = trigger_descriptions.get(trigger_type, "Manual workflow that")
|
||||
|
||||
# Add functionality based on name and integrations
|
||||
if integrations:
|
||||
main_services = list(integrations)[:3]
|
||||
if len(main_services) == 1:
|
||||
desc += f" integrates with {main_services[0]}"
|
||||
elif len(main_services) == 2:
|
||||
desc += f" connects {main_services[0]} and {main_services[1]}"
|
||||
else:
|
||||
desc += f" orchestrates {', '.join(main_services[:-1])}, and {main_services[-1]}"
|
||||
|
||||
# Add workflow purpose hints from name
|
||||
name_lower = name.lower()
|
||||
if 'create' in name_lower:
|
||||
desc += " to create new records"
|
||||
elif 'update' in name_lower:
|
||||
desc += " to update existing data"
|
||||
elif 'sync' in name_lower:
|
||||
desc += " to synchronize data"
|
||||
elif 'notification' in name_lower or 'alert' in name_lower:
|
||||
desc += " for notifications and alerts"
|
||||
elif 'backup' in name_lower:
|
||||
desc += " for data backup operations"
|
||||
elif 'monitor' in name_lower:
|
||||
desc += " for monitoring and reporting"
|
||||
else:
|
||||
desc += " for data processing"
|
||||
|
||||
desc += f". Uses {node_count} nodes"
|
||||
if len(integrations) > 3:
|
||||
desc += f" and integrates with {len(integrations)} services"
|
||||
|
||||
return desc + "."
|
||||
|
||||
def index_all_workflows(self, force_reindex: bool = False) -> Dict[str, int]:
|
||||
"""Index all workflow files. Only reprocesses changed files unless force_reindex=True."""
|
||||
if not os.path.exists(self.workflows_dir):
|
||||
print(f"Warning: Workflows directory '{self.workflows_dir}' not found.")
|
||||
return {'processed': 0, 'skipped': 0, 'errors': 0}
|
||||
|
||||
json_files = glob.glob(os.path.join(self.workflows_dir, "*.json"))
|
||||
|
||||
if not json_files:
|
||||
print(f"Warning: No JSON files found in '{self.workflows_dir}' directory.")
|
||||
return {'processed': 0, 'skipped': 0, 'errors': 0}
|
||||
|
||||
print(f"Indexing {len(json_files)} workflow files...")
|
||||
|
||||
conn = sqlite3.connect(self.db_path)
|
||||
conn.row_factory = sqlite3.Row
|
||||
|
||||
stats = {'processed': 0, 'skipped': 0, 'errors': 0}
|
||||
|
||||
for file_path in json_files:
|
||||
filename = os.path.basename(file_path)
|
||||
|
||||
try:
|
||||
# Check if file needs to be reprocessed
|
||||
if not force_reindex:
|
||||
current_hash = self.get_file_hash(file_path)
|
||||
cursor = conn.execute(
|
||||
"SELECT file_hash FROM workflows WHERE filename = ?",
|
||||
(filename,)
|
||||
)
|
||||
row = cursor.fetchone()
|
||||
if row and row['file_hash'] == current_hash:
|
||||
stats['skipped'] += 1
|
||||
continue
|
||||
|
||||
# Analyze workflow
|
||||
workflow_data = self.analyze_workflow_file(file_path)
|
||||
if not workflow_data:
|
||||
stats['errors'] += 1
|
||||
continue
|
||||
|
||||
# Insert or update in database
|
||||
conn.execute("""
|
||||
INSERT OR REPLACE INTO workflows (
|
||||
filename, name, workflow_id, active, description, trigger_type,
|
||||
complexity, node_count, integrations, tags, created_at, updated_at,
|
||||
file_hash, file_size, analyzed_at
|
||||
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, CURRENT_TIMESTAMP)
|
||||
""", (
|
||||
workflow_data['filename'],
|
||||
workflow_data['name'],
|
||||
workflow_data['workflow_id'],
|
||||
workflow_data['active'],
|
||||
workflow_data['description'],
|
||||
workflow_data['trigger_type'],
|
||||
workflow_data['complexity'],
|
||||
workflow_data['node_count'],
|
||||
json.dumps(workflow_data['integrations']),
|
||||
json.dumps(workflow_data['tags']),
|
||||
workflow_data['created_at'],
|
||||
workflow_data['updated_at'],
|
||||
workflow_data['file_hash'],
|
||||
workflow_data['file_size']
|
||||
))
|
||||
|
||||
stats['processed'] += 1
|
||||
|
||||
except Exception as e:
|
||||
print(f"Error processing {file_path}: {str(e)}")
|
||||
stats['errors'] += 1
|
||||
continue
|
||||
|
||||
conn.commit()
|
||||
conn.close()
|
||||
|
||||
print(f"✅ Indexing complete: {stats['processed']} processed, {stats['skipped']} skipped, {stats['errors']} errors")
|
||||
return stats
|
||||
|
||||
def search_workflows(self, query: str = "", trigger_filter: str = "all",
|
||||
complexity_filter: str = "all", active_only: bool = False,
|
||||
limit: int = 50, offset: int = 0) -> Tuple[List[Dict], int]:
|
||||
"""Fast search with filters and pagination."""
|
||||
conn = sqlite3.connect(self.db_path)
|
||||
conn.row_factory = sqlite3.Row
|
||||
|
||||
# Build WHERE clause
|
||||
where_conditions = []
|
||||
params = []
|
||||
|
||||
if active_only:
|
||||
where_conditions.append("w.active = 1")
|
||||
|
||||
if trigger_filter != "all":
|
||||
where_conditions.append("w.trigger_type = ?")
|
||||
params.append(trigger_filter)
|
||||
|
||||
if complexity_filter != "all":
|
||||
where_conditions.append("w.complexity = ?")
|
||||
params.append(complexity_filter)
|
||||
|
||||
# Use FTS search if query provided
|
||||
if query.strip():
|
||||
# FTS search with ranking
|
||||
base_query = """
|
||||
SELECT w.*, rank
|
||||
FROM workflows_fts fts
|
||||
JOIN workflows w ON w.id = fts.rowid
|
||||
WHERE workflows_fts MATCH ?
|
||||
"""
|
||||
params.insert(0, query)
|
||||
else:
|
||||
# Regular query without FTS
|
||||
base_query = """
|
||||
SELECT w.*, 0 as rank
|
||||
FROM workflows w
|
||||
WHERE 1=1
|
||||
"""
|
||||
|
||||
if where_conditions:
|
||||
base_query += " AND " + " AND ".join(where_conditions)
|
||||
|
||||
# Count total results
|
||||
count_query = f"SELECT COUNT(*) as total FROM ({base_query}) t"
|
||||
cursor = conn.execute(count_query, params)
|
||||
total = cursor.fetchone()['total']
|
||||
|
||||
# Get paginated results
|
||||
if query.strip():
|
||||
base_query += " ORDER BY rank"
|
||||
else:
|
||||
base_query += " ORDER BY w.analyzed_at DESC"
|
||||
|
||||
base_query += f" LIMIT {limit} OFFSET {offset}"
|
||||
|
||||
cursor = conn.execute(base_query, params)
|
||||
rows = cursor.fetchall()
|
||||
|
||||
# Convert to dictionaries and parse JSON fields
|
||||
results = []
|
||||
for row in rows:
|
||||
workflow = dict(row)
|
||||
workflow['integrations'] = json.loads(workflow['integrations'] or '[]')
|
||||
|
||||
# Parse tags and convert dict tags to strings
|
||||
raw_tags = json.loads(workflow['tags'] or '[]')
|
||||
clean_tags = []
|
||||
for tag in raw_tags:
|
||||
if isinstance(tag, dict):
|
||||
# Extract name from tag dict if available
|
||||
clean_tags.append(tag.get('name', str(tag.get('id', 'tag'))))
|
||||
else:
|
||||
clean_tags.append(str(tag))
|
||||
workflow['tags'] = clean_tags
|
||||
|
||||
results.append(workflow)
|
||||
|
||||
conn.close()
|
||||
return results, total
|
||||
|
||||
def get_stats(self) -> Dict[str, Any]:
|
||||
"""Get database statistics."""
|
||||
conn = sqlite3.connect(self.db_path)
|
||||
conn.row_factory = sqlite3.Row
|
||||
|
||||
# Basic counts
|
||||
cursor = conn.execute("SELECT COUNT(*) as total FROM workflows")
|
||||
total = cursor.fetchone()['total']
|
||||
|
||||
cursor = conn.execute("SELECT COUNT(*) as active FROM workflows WHERE active = 1")
|
||||
active = cursor.fetchone()['active']
|
||||
|
||||
# Trigger type breakdown
|
||||
cursor = conn.execute("""
|
||||
SELECT trigger_type, COUNT(*) as count
|
||||
FROM workflows
|
||||
GROUP BY trigger_type
|
||||
""")
|
||||
triggers = {row['trigger_type']: row['count'] for row in cursor.fetchall()}
|
||||
|
||||
# Complexity breakdown
|
||||
cursor = conn.execute("""
|
||||
SELECT complexity, COUNT(*) as count
|
||||
FROM workflows
|
||||
GROUP BY complexity
|
||||
""")
|
||||
complexity = {row['complexity']: row['count'] for row in cursor.fetchall()}
|
||||
|
||||
# Node stats
|
||||
cursor = conn.execute("SELECT SUM(node_count) as total_nodes FROM workflows")
|
||||
total_nodes = cursor.fetchone()['total_nodes'] or 0
|
||||
|
||||
# Unique integrations count
|
||||
cursor = conn.execute("SELECT integrations FROM workflows WHERE integrations != '[]'")
|
||||
all_integrations = set()
|
||||
for row in cursor.fetchall():
|
||||
integrations = json.loads(row['integrations'])
|
||||
all_integrations.update(integrations)
|
||||
|
||||
conn.close()
|
||||
|
||||
return {
|
||||
'total': total,
|
||||
'active': active,
|
||||
'inactive': total - active,
|
||||
'triggers': triggers,
|
||||
'complexity': complexity,
|
||||
'total_nodes': total_nodes,
|
||||
'unique_integrations': len(all_integrations),
|
||||
'last_indexed': datetime.datetime.now().isoformat()
|
||||
}
|
||||
|
||||
|
||||
def main():
|
||||
"""Command-line interface for workflow database."""
|
||||
import argparse
|
||||
|
||||
parser = argparse.ArgumentParser(description='N8N Workflow Database')
|
||||
parser.add_argument('--index', action='store_true', help='Index all workflows')
|
||||
parser.add_argument('--force', action='store_true', help='Force reindex all files')
|
||||
parser.add_argument('--search', help='Search workflows')
|
||||
parser.add_argument('--stats', action='store_true', help='Show database statistics')
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
db = WorkflowDatabase()
|
||||
|
||||
if args.index:
|
||||
stats = db.index_all_workflows(force_reindex=args.force)
|
||||
print(f"Indexed {stats['processed']} workflows")
|
||||
|
||||
elif args.search:
|
||||
results, total = db.search_workflows(args.search, limit=10)
|
||||
print(f"Found {total} workflows:")
|
||||
for workflow in results:
|
||||
print(f" - {workflow['name']} ({workflow['trigger_type']}, {workflow['node_count']} nodes)")
|
||||
|
||||
elif args.stats:
|
||||
stats = db.get_stats()
|
||||
print(f"Database Statistics:")
|
||||
print(f" Total workflows: {stats['total']}")
|
||||
print(f" Active: {stats['active']}")
|
||||
print(f" Total nodes: {stats['total_nodes']}")
|
||||
print(f" Unique integrations: {stats['unique_integrations']}")
|
||||
print(f" Trigger types: {stats['triggers']}")
|
||||
|
||||
else:
|
||||
parser.print_help()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
BIN
workflows.db
Normal file
BIN
workflows.db
Normal file
Binary file not shown.
608
workflows/0001_Telegram_Schedule_Automation_Scheduled.json
Normal file
608
workflows/0001_Telegram_Schedule_Automation_Scheduled.json
Normal file
@@ -0,0 +1,608 @@
|
||||
{
|
||||
"id": "02GdRzvsuHmSSgBw",
|
||||
"meta": {
|
||||
"instanceId": "31e69f7f4a77bf465b805824e303232f0227212ae922d12133a0f96ffeab4fef",
|
||||
"templateCredsSetupCompleted": true
|
||||
},
|
||||
"name": "#️⃣Nostr #damus AI Powered Reporting + Gmail + Telegram",
|
||||
"tags": [],
|
||||
"nodes": [
|
||||
{
|
||||
"id": "e9c4c7bf-0cce-456e-9b95-726669e4b260",
|
||||
"name": "When clicking ‘Test workflow’",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
-500,
|
||||
-60
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "b8f57e15-8a6e-4a29-a6e8-745bebbd1f44",
|
||||
"name": "Get HTML",
|
||||
"type": "n8n-nodes-base.markdown",
|
||||
"position": [
|
||||
880,
|
||||
-840
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "markdownToHtml",
|
||||
"options": {},
|
||||
"markdown": "={{ $json.text }}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "8b212119-9b69-449c-8a3b-4fdc5b085f30",
|
||||
"name": "Gmail Themes",
|
||||
"type": "n8n-nodes-base.gmail",
|
||||
"position": [
|
||||
1080,
|
||||
-840
|
||||
],
|
||||
"webhookId": "e07f9378-bfa5-48ac-88fd-0ef88a725ede",
|
||||
"parameters": {
|
||||
"sendTo": "joe@example.com",
|
||||
"message": "={{ $json.data }}",
|
||||
"options": {
|
||||
"appendAttribution": false
|
||||
},
|
||||
"subject": "#damus"
|
||||
},
|
||||
"credentials": {
|
||||
"gmailOAuth2": {
|
||||
"id": "1xpVDEQ1yx8gV022",
|
||||
"name": "Gmail account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 2.1
|
||||
},
|
||||
{
|
||||
"id": "b7fc214b-72cb-4caf-8563-7b2f13a1110d",
|
||||
"name": "Get HTML Report",
|
||||
"type": "n8n-nodes-base.markdown",
|
||||
"position": [
|
||||
880,
|
||||
80
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "markdownToHtml",
|
||||
"options": {},
|
||||
"markdown": "={{ $json.text }}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "dd7580bc-f97c-4ad1-8556-2329f88bea75",
|
||||
"name": "#damus Themes List",
|
||||
"type": "@n8n/n8n-nodes-langchain.chainLlm",
|
||||
"position": [
|
||||
500,
|
||||
-400
|
||||
],
|
||||
"parameters": {
|
||||
"text": "=Extract a list of themes from this: {{ $json.text }}\n\nDo not include any preamble or further explanation.",
|
||||
"promptType": "define"
|
||||
},
|
||||
"typeVersion": 1.5
|
||||
},
|
||||
{
|
||||
"id": "60a9d8fe-4ba0-4450-8073-4108b832981e",
|
||||
"name": "#damus Thread Themes",
|
||||
"type": "@n8n/n8n-nodes-langchain.chainLlm",
|
||||
"position": [
|
||||
500,
|
||||
-840
|
||||
],
|
||||
"parameters": {
|
||||
"text": "=Tell me the theme and highlight some common threads associated with these Nostr threads that are all #damus. Specifically mention the main reason #damus is hashtagged. These are the threads: {{ $json.content.toJsonString() }}",
|
||||
"promptType": "define"
|
||||
},
|
||||
"typeVersion": 1.5
|
||||
},
|
||||
{
|
||||
"id": "72ab08a7-f729-46e3-8a4d-56005cabaf17",
|
||||
"name": "#damus Themes & Threads Report",
|
||||
"type": "@n8n/n8n-nodes-langchain.chainLlm",
|
||||
"position": [
|
||||
500,
|
||||
80
|
||||
],
|
||||
"parameters": {
|
||||
"text": "=**Task:** Analyze the attached file containing Nostr threads using the hashtag #damus. Provide a detailed report with examples thread based on the following themes. Got deep and seek out the underlying motivation of the users who posted the threads: \n\n## Themes\n{{ $json.text }}\n\n1. **Overall Theme:** Summarize the central topic(s) discussed across the threads.\n2. **Common Threads:** Identify recurring topics or ideas that unify the posts.\n3. **Key Highlights:** Extract specific examples or quotes that illustrate prominent themes.\n4. **Insights and Observations:** Offer insights on how the #damus community engages with the app and its ecosystem.\n5. **Suggestions for Improvement:** If applicable, suggest ways to enhance user experience or community engagement based on the analysis.\n\n**Requirements:**\n- Expand on each theme with comprehensive details and analysis.\n- Use bullet points or numbered lists for clarity.\n- Include relevant quotes or examples from the text to support your analysis.\n- Ensure your response is detailed, well-structured, and easy to read.\n\n**Context:** The analysis should focus on understanding how users interact with Damus, their appreciation for its features, challenges they face, and how it fits into the broader Nostr ecosystem.\n\n## Nostr thread with hashtag #damus: \n{{ $json.content.toJsonString() }}\n\n",
|
||||
"promptType": "define"
|
||||
},
|
||||
"typeVersion": 1.5
|
||||
},
|
||||
{
|
||||
"id": "55362e03-ca0b-4f5e-a7ff-02828522fc7d",
|
||||
"name": "gemini-2.0-flash-lite-preview",
|
||||
"type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
|
||||
"position": [
|
||||
600,
|
||||
-680
|
||||
],
|
||||
"parameters": {
|
||||
"options": {
|
||||
"temperature": 0.4
|
||||
},
|
||||
"modelName": "=models/gemini-2.0-flash-lite-preview"
|
||||
},
|
||||
"credentials": {
|
||||
"googlePalmApi": {
|
||||
"id": "L9UNQHflYlyF9Ngd",
|
||||
"name": "Google Gemini(PaLM) Api account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "7f457b3f-d39b-4062-ada0-5e81f3768857",
|
||||
"name": "gemini-2.0-flash-lite-preview1",
|
||||
"type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
|
||||
"position": [
|
||||
600,
|
||||
-240
|
||||
],
|
||||
"parameters": {
|
||||
"options": {
|
||||
"temperature": 0.4
|
||||
},
|
||||
"modelName": "models/gemini-2.0-flash-lite-preview"
|
||||
},
|
||||
"credentials": {
|
||||
"googlePalmApi": {
|
||||
"id": "L9UNQHflYlyF9Ngd",
|
||||
"name": "Google Gemini(PaLM) Api account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "bd68e36a-2fa7-4b78-96d8-9c4f97388249",
|
||||
"name": "gemini-2.0-flash-lite-preview2",
|
||||
"type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
|
||||
"position": [
|
||||
600,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"options": {
|
||||
"temperature": 0.4
|
||||
},
|
||||
"modelName": "models/gemini-2.0-flash-lite-preview"
|
||||
},
|
||||
"credentials": {
|
||||
"googlePalmApi": {
|
||||
"id": "L9UNQHflYlyF9Ngd",
|
||||
"name": "Google Gemini(PaLM) Api account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "24f378ca-8a10-441f-886d-136314fa30de",
|
||||
"name": "Gmail Report",
|
||||
"type": "n8n-nodes-base.gmail",
|
||||
"position": [
|
||||
1080,
|
||||
80
|
||||
],
|
||||
"webhookId": "e07f9378-bfa5-48ac-88fd-0ef88a725ede",
|
||||
"parameters": {
|
||||
"sendTo": "joe@example.com",
|
||||
"message": "={{ $json.data }}",
|
||||
"options": {
|
||||
"appendAttribution": false
|
||||
},
|
||||
"subject": "#damus"
|
||||
},
|
||||
"credentials": {
|
||||
"gmailOAuth2": {
|
||||
"id": "1xpVDEQ1yx8gV022",
|
||||
"name": "Gmail account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 2.1
|
||||
},
|
||||
{
|
||||
"id": "f4814872-577a-4243-ac1b-e152e147dca0",
|
||||
"name": "Aggregate #damus Content",
|
||||
"type": "n8n-nodes-base.aggregate",
|
||||
"position": [
|
||||
120,
|
||||
-140
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"fieldsToAggregate": {
|
||||
"fieldToAggregate": [
|
||||
{
|
||||
"fieldToAggregate": "content"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "d2079c9e-b743-4353-bda9-e269168f5461",
|
||||
"name": "Sticky Note",
|
||||
"type": "n8n-nodes-base.stickyNote",
|
||||
"position": [
|
||||
360,
|
||||
-940
|
||||
],
|
||||
"parameters": {
|
||||
"color": 6,
|
||||
"width": 960,
|
||||
"height": 420,
|
||||
"content": "## #damus Threads Themes"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "5f69afb5-6e3c-4f65-84bb-8c1f4544b2c5",
|
||||
"name": "Sticky Note1",
|
||||
"type": "n8n-nodes-base.stickyNote",
|
||||
"position": [
|
||||
360,
|
||||
-480
|
||||
],
|
||||
"parameters": {
|
||||
"color": 5,
|
||||
"width": 520,
|
||||
"height": 420,
|
||||
"content": "## #damus Threads Themes"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "6de3d9d2-98be-4102-9ed5-cda48b37eee7",
|
||||
"name": "Sticky Note2",
|
||||
"type": "n8n-nodes-base.stickyNote",
|
||||
"position": [
|
||||
360,
|
||||
-20
|
||||
],
|
||||
"parameters": {
|
||||
"color": 4,
|
||||
"width": 960,
|
||||
"height": 420,
|
||||
"content": "## #damus Threads & Threads Report"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "42f333ce-bdd7-4950-9ef1-ae797a671f5d",
|
||||
"name": "Merge Themes and Content",
|
||||
"type": "n8n-nodes-base.merge",
|
||||
"position": [
|
||||
1000,
|
||||
-160
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "combine",
|
||||
"options": {},
|
||||
"combineBy": "combineByPosition"
|
||||
},
|
||||
"typeVersion": 3
|
||||
},
|
||||
{
|
||||
"id": "7ff77e60-03ed-4937-b923-74a7f588fd2a",
|
||||
"name": "Schedule Trigger",
|
||||
"type": "n8n-nodes-base.scheduleTrigger",
|
||||
"position": [
|
||||
-500,
|
||||
-260
|
||||
],
|
||||
"parameters": {
|
||||
"rule": {
|
||||
"interval": [
|
||||
{}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1.2
|
||||
},
|
||||
{
|
||||
"id": "d1939a96-1e68-4d90-a456-55852c941e28",
|
||||
"name": "Sticky Note3",
|
||||
"type": "n8n-nodes-base.stickyNote",
|
||||
"position": [
|
||||
-280,
|
||||
-580
|
||||
],
|
||||
"parameters": {
|
||||
"color": 6,
|
||||
"width": 340,
|
||||
"height": 700,
|
||||
"content": "## Get Nostr Threads with Hashtag #damus\n\nThe social network you control\nYour very own social network for your friends or business.\nAvailable Now on iOS, iPad and macOS (M1/M2)\n\nhttps://nostr.com/\nhttps://damus.io/\nhttps://damus.io/notedeck/\n\n### n8n Community Node https://github.com/ocknamo/n8n-nodes-nostrobots\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "89905442-bf8d-40d2-a9b1-fb3cf3a2ac44",
|
||||
"name": "Sticky Note4",
|
||||
"type": "n8n-nodes-base.stickyNote",
|
||||
"position": [
|
||||
940,
|
||||
-640
|
||||
],
|
||||
"parameters": {
|
||||
"width": 320,
|
||||
"height": 280,
|
||||
"content": "## Telegram \n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "aee0f3eb-7b0e-4df1-968d-5abe1c22e26a",
|
||||
"name": "Sticky Note5",
|
||||
"type": "n8n-nodes-base.stickyNote",
|
||||
"position": [
|
||||
940,
|
||||
280
|
||||
],
|
||||
"parameters": {
|
||||
"width": 320,
|
||||
"height": 280,
|
||||
"content": "## Telegram \n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "f6b00109-74ef-4522-b568-6426b054bea3",
|
||||
"name": "Telegram Themes",
|
||||
"type": "n8n-nodes-base.telegram",
|
||||
"position": [
|
||||
1040,
|
||||
-560
|
||||
],
|
||||
"webhookId": "8406b3d2-5ac6-452d-847f-c0886c8cd058",
|
||||
"parameters": {
|
||||
"text": "={{ $json.text.slice(0, 4000) }}",
|
||||
"chatId": "={{ $env.TELEGRAM_CHAT_ID }}",
|
||||
"additionalFields": {
|
||||
"parse_mode": "HTML",
|
||||
"appendAttribution": false
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"telegramApi": {
|
||||
"id": "pAIFhguJlkO3c7aQ",
|
||||
"name": "Telegram account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1.2
|
||||
},
|
||||
{
|
||||
"id": "3e7e9c70-43c6-4074-be9a-2f5ed6c4fb0e",
|
||||
"name": "Telegram Themes & Threads",
|
||||
"type": "n8n-nodes-base.telegram",
|
||||
"position": [
|
||||
1040,
|
||||
360
|
||||
],
|
||||
"webhookId": "8406b3d2-5ac6-452d-847f-c0886c8cd058",
|
||||
"parameters": {
|
||||
"text": "={{ $json.text.slice(0, 4000) }}",
|
||||
"chatId": "={{ $env.TELEGRAM_CHAT_ID }}",
|
||||
"additionalFields": {
|
||||
"parse_mode": "HTML",
|
||||
"appendAttribution": false
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"telegramApi": {
|
||||
"id": "pAIFhguJlkO3c7aQ",
|
||||
"name": "Telegram account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1.2
|
||||
},
|
||||
{
|
||||
"id": "5bc52456-7bbc-445a-8ffd-f47403a4b978",
|
||||
"name": "Sticky Note6",
|
||||
"type": "n8n-nodes-base.stickyNote",
|
||||
"position": [
|
||||
-580,
|
||||
-340
|
||||
],
|
||||
"parameters": {
|
||||
"color": 4,
|
||||
"width": 260,
|
||||
"height": 460,
|
||||
"content": "## Try Me!"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "3b61555e-4e20-41d2-8fb7-490a2488f5f2",
|
||||
"name": "Nostr Read #damus",
|
||||
"type": "n8n-nodes-nostrobots.nostrobotsread",
|
||||
"position": [
|
||||
-160,
|
||||
-140
|
||||
],
|
||||
"parameters": {
|
||||
"from": 180,
|
||||
"hashtag": "#damus",
|
||||
"strategy": "hashtag"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": true,
|
||||
"pinData": {},
|
||||
"settings": {
|
||||
"executionOrder": "v1"
|
||||
},
|
||||
"versionId": "06d6edc0-ed5c-48d1-abe6-22b04368d19b",
|
||||
"connections": {
|
||||
"Get HTML": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Gmail Themes",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get HTML Report": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Gmail Report",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Schedule Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Nostr Read #damus",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Nostr Read #damus": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Aggregate #damus Content",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"#damus Themes List": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Merge Themes and Content",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"#damus Thread Themes": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get HTML",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "#damus Themes List",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Telegram Themes",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Aggregate #damus Content": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "#damus Thread Themes",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Merge Themes and Content",
|
||||
"type": "main",
|
||||
"index": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Merge Themes and Content": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "#damus Themes & Threads Report",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"gemini-2.0-flash-lite-preview": {
|
||||
"ai_languageModel": [
|
||||
[
|
||||
{
|
||||
"node": "#damus Thread Themes",
|
||||
"type": "ai_languageModel",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"#damus Themes & Threads Report": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get HTML Report",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Telegram Themes & Threads",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"gemini-2.0-flash-lite-preview1": {
|
||||
"ai_languageModel": [
|
||||
[
|
||||
{
|
||||
"node": "#damus Themes List",
|
||||
"type": "ai_languageModel",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"gemini-2.0-flash-lite-preview2": {
|
||||
"ai_languageModel": [
|
||||
[
|
||||
{
|
||||
"node": "#damus Themes & Threads Report",
|
||||
"type": "ai_languageModel",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"When clicking ‘Test workflow’": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Nostr Read #damus",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
61
workflows/0002_Manual_Totp_Automation_Triggered.json
Normal file
61
workflows/0002_Manual_Totp_Automation_Triggered.json
Normal file
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"id": "0wfomsVO0TQtQkwU",
|
||||
"meta": {
|
||||
"instanceId": "2e75c9fb3cdcf631da470c0180f0739986baa0ee860de53281e9edc3491b82a3"
|
||||
},
|
||||
"name": "Complete Guide to Setting Up and Generating TOTP Codes in n8n 🔐",
|
||||
"tags": [],
|
||||
"nodes": [
|
||||
{
|
||||
"id": "0fe95b9a-be2b-4022-829e-8b6c801e5baf",
|
||||
"name": "When clicking ‘Test workflow’",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
-280,
|
||||
-340
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "02fee6b5-7770-4889-b9bb-89bface8872d",
|
||||
"name": "TOTP",
|
||||
"type": "n8n-nodes-base.totp",
|
||||
"position": [
|
||||
-40,
|
||||
-340
|
||||
],
|
||||
"parameters": {
|
||||
"options": {}
|
||||
},
|
||||
"credentials": {
|
||||
"totpApi": {
|
||||
"id": "9487Zco8UqMQWnpf",
|
||||
"name": "TOTP account Mars55"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"pinData": {},
|
||||
"settings": {
|
||||
"timezone": "Asia/Tehran",
|
||||
"callerPolicy": "workflowsFromSameOwner",
|
||||
"executionOrder": "v1"
|
||||
},
|
||||
"versionId": "d7a5fff3-3fcd-45cd-ba06-564097567ff5",
|
||||
"connections": {
|
||||
"When clicking ‘Test workflow’": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "TOTP",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
109
workflows/0003_Bitwarden_Automate.json
Normal file
109
workflows/0003_Bitwarden_Automate.json
Normal file
@@ -0,0 +1,109 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Bitwarden",
|
||||
"type": "n8n-nodes-base.bitwarden",
|
||||
"position": [
|
||||
470,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"name": "documentation",
|
||||
"resource": "group",
|
||||
"operation": "create",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"bitwardenApi": "Bitwarden API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Bitwarden1",
|
||||
"type": "n8n-nodes-base.bitwarden",
|
||||
"position": [
|
||||
670,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "member",
|
||||
"operation": "getAll",
|
||||
"returnAll": true
|
||||
},
|
||||
"credentials": {
|
||||
"bitwardenApi": "Bitwarden API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Bitwarden2",
|
||||
"type": "n8n-nodes-base.bitwarden",
|
||||
"position": [
|
||||
870,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"groupId": "={{$node[\"Bitwarden\"].json[\"id\"]}}",
|
||||
"resource": "group",
|
||||
"memberIds": "={{$json[\"id\"]}}",
|
||||
"operation": "updateMembers"
|
||||
},
|
||||
"credentials": {
|
||||
"bitwardenApi": "Bitwarden API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Bitwarden3",
|
||||
"type": "n8n-nodes-base.bitwarden",
|
||||
"position": [
|
||||
1070,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"groupId": "={{$node[\"Bitwarden\"].json[\"id\"]}}",
|
||||
"resource": "group",
|
||||
"operation": "getMembers"
|
||||
},
|
||||
"credentials": {
|
||||
"bitwardenApi": "Bitwarden API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Bitwarden": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Bitwarden1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Bitwarden1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Bitwarden2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Bitwarden2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Bitwarden3",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
165
workflows/0004_GoogleSheets_Typeform_Automate_Triggered.json
Normal file
165
workflows/0004_GoogleSheets_Typeform_Automate_Triggered.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "typeform feedback workflow",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Typeform Trigger",
|
||||
"type": "n8n-nodes-base.typeformTrigger",
|
||||
"notes": "course feedback",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"webhookId": "1234567890",
|
||||
"parameters": {
|
||||
"formId": "yxcvbnm"
|
||||
},
|
||||
"credentials": {
|
||||
"typeformApi": "typeform"
|
||||
},
|
||||
"notesInFlow": true,
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"notes": "filter feedback",
|
||||
"position": [
|
||||
850,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"number": [
|
||||
{
|
||||
"value1": "={{$json[\"usefulness\"]}}",
|
||||
"value2": 3,
|
||||
"operation": "largerEqual"
|
||||
}
|
||||
],
|
||||
"string": [],
|
||||
"boolean": []
|
||||
}
|
||||
},
|
||||
"notesInFlow": true,
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Sheets",
|
||||
"type": "n8n-nodes-base.googleSheets",
|
||||
"notes": "positive feedback",
|
||||
"position": [
|
||||
1050,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"range": "positive_feedback!A:C",
|
||||
"options": {},
|
||||
"sheetId": "asdfghjklöä",
|
||||
"operation": "append",
|
||||
"authentication": "oAuth2"
|
||||
},
|
||||
"credentials": {
|
||||
"googleSheetsOAuth2Api": "google_sheets_oauth"
|
||||
},
|
||||
"notesInFlow": true,
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"notes": "capture typeform data",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "usefulness",
|
||||
"value": "={{$json[\"How useful was the course?\"]}}"
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "opinion",
|
||||
"value": "={{$json[\"Your opinion on the course:\"]}}"
|
||||
}
|
||||
],
|
||||
"boolean": []
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"notesInFlow": true,
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Sheets1",
|
||||
"type": "n8n-nodes-base.googleSheets",
|
||||
"notes": "negative feedback",
|
||||
"position": [
|
||||
1050,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"range": "negative_feedback!A:C",
|
||||
"keyRow": 1,
|
||||
"options": {},
|
||||
"sheetId": "qwertzuiop",
|
||||
"operation": "append",
|
||||
"authentication": "oAuth2"
|
||||
},
|
||||
"credentials": {
|
||||
"googleSheetsOAuth2Api": "google_sheets_oauth"
|
||||
},
|
||||
"notesInFlow": true,
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Sheets",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Google Sheets1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Typeform Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
255
workflows/0005_Manual_Twitter_Create_Triggered.json
Normal file
255
workflows/0005_Manual_Twitter_Create_Triggered.json
Normal file
@@ -0,0 +1,255 @@
|
||||
{
|
||||
"id": 1003,
|
||||
"name": "New tweets",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
240,
|
||||
260
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Twitter",
|
||||
"type": "n8n-nodes-base.twitter",
|
||||
"position": [
|
||||
520,
|
||||
160
|
||||
],
|
||||
"parameters": {
|
||||
"limit": 100,
|
||||
"operation": "search",
|
||||
"searchText": "verstappen",
|
||||
"additionalFields": {
|
||||
"resultType": "mixed"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set_AT_list",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
780,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "Likes",
|
||||
"value": "={{$node[\"Twitter\"].json[\"favorite_count\"] ? $node[\"Twitter\"].json[\"favorite_count\"] : 0 }}"
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "Tweet",
|
||||
"value": "={{$node[\"get airtable list\"].json[\"fields\"][\"Tweet\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Tweet_id",
|
||||
"value": "={{$node[\"get airtable list\"].json[\"fields\"][\"Tweet_id\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Tweet URL",
|
||||
"value": "={{$node[\"get airtable list\"].json[\"fields\"][\"Tweet URL\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Author",
|
||||
"value": "={{$node[\"get airtable list\"].json[\"fields\"][\"Author\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Time",
|
||||
"value": "={{$node[\"get airtable list\"].json[\"fields\"][\"Time\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {
|
||||
"dotNotation": false
|
||||
},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "get airtable list",
|
||||
"type": "n8n-nodes-base.airtable",
|
||||
"position": [
|
||||
520,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"table": "tbl6rexxFBodzKVoC",
|
||||
"operation": "list",
|
||||
"application": "app36P08S3Jzki6qJ",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"airtableApi": {
|
||||
"id": "2",
|
||||
"name": "airtable_api"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "set twitter data",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
780,
|
||||
160
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "Likes",
|
||||
"value": "={{$node[\"Twitter\"].json[\"favorite_count\"]}}"
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "Tweet",
|
||||
"value": "={{$node[\"Twitter\"].json[\"text\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Tweet_id",
|
||||
"value": "={{$node[\"Twitter\"].json[\"id\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Tweet URL",
|
||||
"value": "=https://twitter.com/{{$node[\"Twitter\"].json[\"user\"][\"screen_name\"]}}/status/{{$node[\"Twitter\"].json[\"id_str\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Author",
|
||||
"value": "={{$node[\"Twitter\"].json[\"in_reply_to_screen_name\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Time",
|
||||
"value": "={{$node[\"Twitter\"].json[\"created_at\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {
|
||||
"dotNotation": false
|
||||
},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Leave only new tweets",
|
||||
"type": "n8n-nodes-base.merge",
|
||||
"position": [
|
||||
1060,
|
||||
260
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "removeKeyMatches",
|
||||
"propertyName1": "Tweet_id",
|
||||
"propertyName2": "Tweet_id"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Append new tweets to airtable",
|
||||
"type": "n8n-nodes-base.airtable",
|
||||
"position": [
|
||||
1300,
|
||||
260
|
||||
],
|
||||
"parameters": {
|
||||
"table": "tbl6rexxFBodzKVoC",
|
||||
"options": {},
|
||||
"operation": "append",
|
||||
"application": "app36P08S3Jzki6qJ",
|
||||
"addAllFields": "={{true}}"
|
||||
},
|
||||
"credentials": {
|
||||
"airtableApi": {
|
||||
"id": "2",
|
||||
"name": "airtable_api"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Twitter": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "set twitter data",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set_AT_list": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Leave only new tweets",
|
||||
"type": "main",
|
||||
"index": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"set twitter data": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Leave only new tweets",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"get airtable list": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set_AT_list",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Leave only new tweets": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Append new tweets to airtable",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Twitter",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "get airtable list",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
76
workflows/0006_Openweathermap_Cron_Automate_Scheduled.json
Normal file
76
workflows/0006_Openweathermap_Cron_Automate_Scheduled.json
Normal file
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Plivo",
|
||||
"type": "n8n-nodes-base.plivo",
|
||||
"position": [
|
||||
1030,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"message": "=Hey! The temperature outside is {{$node[\"OpenWeatherMap\"].json[\"main\"][\"temp\"]}}°C."
|
||||
},
|
||||
"credentials": {
|
||||
"plivoApi": "Plivo API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "OpenWeatherMap",
|
||||
"type": "n8n-nodes-base.openWeatherMap",
|
||||
"position": [
|
||||
830,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"cityName": "berlin"
|
||||
},
|
||||
"credentials": {
|
||||
"openWeatherMapApi": "owm"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
630,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"hour": 9
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "OpenWeatherMap",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"OpenWeatherMap": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Plivo",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
47
workflows/0007_Manual_Todoist_Create_Triggered.json
Normal file
47
workflows/0007_Manual_Todoist_Create_Triggered.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "100",
|
||||
"name": "Create a new task in Todoist",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
550,
|
||||
250
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Todoist",
|
||||
"type": "n8n-nodes-base.todoist",
|
||||
"position": [
|
||||
750,
|
||||
250
|
||||
],
|
||||
"parameters": {
|
||||
"content": "",
|
||||
"options": {}
|
||||
},
|
||||
"credentials": {
|
||||
"todoistApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Todoist",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
376
workflows/0008_Slack_Stripe_Create_Triggered.json
Normal file
376
workflows/0008_Slack_Stripe_Create_Triggered.json
Normal file
@@ -0,0 +1,376 @@
|
||||
{
|
||||
"id": 100,
|
||||
"name": "On new Stripe Invoice Payment update Hubspot and notify the team in Slack",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "When Invoice Paid",
|
||||
"type": "n8n-nodes-base.stripeTrigger",
|
||||
"position": [
|
||||
400,
|
||||
460
|
||||
],
|
||||
"webhookId": "47727266-5233-48e5-b7f7-e47252840a4e",
|
||||
"parameters": {
|
||||
"events": [
|
||||
"invoice.payment_succeeded"
|
||||
]
|
||||
},
|
||||
"credentials": {
|
||||
"stripeApi": {
|
||||
"id": "39",
|
||||
"name": "Stripe account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Update Deal to Paid",
|
||||
"type": "n8n-nodes-base.hubspot",
|
||||
"position": [
|
||||
1240,
|
||||
500
|
||||
],
|
||||
"parameters": {
|
||||
"dealId": "={{$json[\"id\"]}}",
|
||||
"operation": "update",
|
||||
"updateFields": {
|
||||
"customPropertiesUi": {
|
||||
"customPropertiesValues": [
|
||||
{
|
||||
"value": "Yes",
|
||||
"property": "paid"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"authentication": "oAuth2"
|
||||
},
|
||||
"credentials": {
|
||||
"hubspotOAuth2Api": {
|
||||
"id": "60",
|
||||
"name": "Hubspot account 2"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Find Deal based on PO Number",
|
||||
"type": "n8n-nodes-base.hubspot",
|
||||
"position": [
|
||||
820,
|
||||
480
|
||||
],
|
||||
"parameters": {
|
||||
"operation": "search",
|
||||
"filterGroupsUi": {
|
||||
"filterGroupsValues": [
|
||||
{
|
||||
"filtersUi": {
|
||||
"filterValues": [
|
||||
{
|
||||
"value": "={{$json[\"data\"][\"object\"][\"custom_fields\"][0][\"value\"]}}",
|
||||
"propertyName": "po_number"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"hubspotApi": {
|
||||
"id": "57",
|
||||
"name": "Hubspot account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1,
|
||||
"alwaysOutputData": true
|
||||
},
|
||||
{
|
||||
"name": "If no PO Number",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
600,
|
||||
460
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$json[\"data\"][\"object\"][\"custom_fields\"]}}",
|
||||
"operation": "isEmpty"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "If no deal found for PO",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1020,
|
||||
480
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$json[\"id\"]}}",
|
||||
"operation": "isEmpty"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send invoice paid message",
|
||||
"type": "n8n-nodes-base.slack",
|
||||
"position": [
|
||||
1420,
|
||||
500
|
||||
],
|
||||
"parameters": {
|
||||
"text": ":sparkles: An invoice has been paid :sparkles:",
|
||||
"channel": "team-accounts",
|
||||
"blocksUi": {
|
||||
"blocksValues": []
|
||||
},
|
||||
"attachments": [
|
||||
{
|
||||
"color": "#00FF04",
|
||||
"fields": {
|
||||
"item": [
|
||||
{
|
||||
"short": true,
|
||||
"title": "Amount",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"amount_paid\"]/100}}"
|
||||
},
|
||||
{
|
||||
"short": true,
|
||||
"title": "Currency",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"currency\"]}}"
|
||||
},
|
||||
{
|
||||
"short": false,
|
||||
"title": "Customer Name",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"customer_name\"]}}"
|
||||
},
|
||||
{
|
||||
"short": false,
|
||||
"title": "Customer Email",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"customer_email\"]}}"
|
||||
},
|
||||
{
|
||||
"short": true,
|
||||
"title": "PO Number",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"custom_fields\"][0][\"value\"]}}"
|
||||
},
|
||||
{
|
||||
"short": true,
|
||||
"title": "",
|
||||
"value": "="
|
||||
}
|
||||
]
|
||||
},
|
||||
"footer": "=*Transaction ID:* {{$node[\"When Invoice Paid\"].json[\"id\"]}}"
|
||||
}
|
||||
],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"slackApi": {
|
||||
"id": "53",
|
||||
"name": "Slack Access Token"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send no PO Message",
|
||||
"type": "n8n-nodes-base.slack",
|
||||
"position": [
|
||||
800,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"text": ":x: Stripe Payment with no PO Number :x:",
|
||||
"channel": "team-accounts",
|
||||
"blocksUi": {
|
||||
"blocksValues": []
|
||||
},
|
||||
"attachments": [
|
||||
{
|
||||
"color": "#FF3C00",
|
||||
"fields": {
|
||||
"item": [
|
||||
{
|
||||
"short": true,
|
||||
"title": "Amount",
|
||||
"value": "={{$json[\"data\"][\"object\"][\"amount_paid\"] / 100}}"
|
||||
},
|
||||
{
|
||||
"short": true,
|
||||
"title": "Currency",
|
||||
"value": "={{$json[\"data\"][\"object\"][\"currency\"]}}"
|
||||
},
|
||||
{
|
||||
"short": false,
|
||||
"title": "Customer Name",
|
||||
"value": "={{$json[\"data\"][\"object\"][\"customer_name\"]}}"
|
||||
},
|
||||
{
|
||||
"short": false,
|
||||
"title": "Customer Email",
|
||||
"value": "={{$json[\"data\"][\"object\"][\"customer_email\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"footer": "=*Transaction ID:* {{$json[\"id\"]}}"
|
||||
}
|
||||
],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"slackApi": {
|
||||
"id": "53",
|
||||
"name": "Slack Access Token"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send Deal not found message",
|
||||
"type": "n8n-nodes-base.slack",
|
||||
"position": [
|
||||
1180,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"text": ":x: Unable to find Deal for the below payment :x:",
|
||||
"channel": "team-accounts",
|
||||
"blocksUi": {
|
||||
"blocksValues": []
|
||||
},
|
||||
"attachments": [
|
||||
{
|
||||
"color": "#FF3C00",
|
||||
"fields": {
|
||||
"item": [
|
||||
{
|
||||
"short": true,
|
||||
"title": "Amount",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"amount_paid\"]/100}}"
|
||||
},
|
||||
{
|
||||
"short": true,
|
||||
"title": "Currency",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"currency\"]}}"
|
||||
},
|
||||
{
|
||||
"short": false,
|
||||
"title": "Customer Name",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"customer_name\"]}}"
|
||||
},
|
||||
{
|
||||
"short": false,
|
||||
"title": "Customer Email",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"customer_email\"]}}"
|
||||
},
|
||||
{
|
||||
"short": true,
|
||||
"title": "PO Number",
|
||||
"value": "={{$node[\"When Invoice Paid\"].json[\"data\"][\"object\"][\"custom_fields\"][0][\"value\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"footer": "=*Transaction ID:* {{$node[\"When Invoice Paid\"].json[\"id\"]}}"
|
||||
}
|
||||
],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"slackApi": {
|
||||
"id": "53",
|
||||
"name": "Slack Access Token"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"If no PO Number": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Send no PO Message",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Find Deal based on PO Number",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"When Invoice Paid": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "If no PO Number",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Update Deal to Paid": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Send invoice paid message",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"If no deal found for PO": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Send Deal not found message",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Update Deal to Paid",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Find Deal based on PO Number": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "If no deal found for PO",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
112
workflows/0009_Process.json
Normal file
112
workflows/0009_Process.json
Normal file
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Data 1",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
602,
|
||||
350
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "items[0].json = {\n\"data\": [\n{\n\"pointer\": \"12345\",\n\"panel\": \"234234\",\n\"subject\": \"Blah Blah\",\n\"note\": \"\",\n\"interviewers\": [\n{\n\"id\": \"111222333\",\n\"name\": \"Bobby Johnson\",\n\"email\": \"bobbyj@example.com\"\n}\n],\n\"timezone\": \"America/Los_Angeles\",\n},\n{\n\"pointer\": \"98754\",\n\"panel\": \"3243234\",\n\"subject\": \"Yadda Yadda\",\n\"note\": \"\",\n\"interviewers\": [\n{\n\"id\": \"444555666\",\n\"name\": \"Billy Johnson\",\n\"email\": \"billyj@example.com\"\n}\n],\n\"timezone\": \"America/Los_Angeles\",\n},\n],\n\"hasNext\": false\n};\nreturn items;\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Data 2",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
602,
|
||||
550
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "items[0].json = [\n{\n\"name\": \"test\",\n\"fields\": {\n\"FirstName\": \"Bobby\",\n\"LastName\": \"Johnson\",\n\"JobTitleDescription\": \"Recruiter\",\n\"HomeDepartmentDescription\": \"Recruiting Team\",\n\"Photo\": [\n{\n\"x\": \"attPuc6gAIHUOHjsY\",\n\"url\": \"http://urlto.com/BobbyPhoto.jpg\",\n\"filename\": \"photo.jpg\",\n\"size\": 28956,\n\"type\": \"image/jpeg\"\n}\n],\n\"eid\": \"111222333\"\n},\n\"createdTime\": \"2019-09-23T04:06:48.000Z\"\n},\n{\n\"name\": \"test2\",\n\"fields\": {\n\"FirstName\": \"Billy\",\n\"LastName\": \"Johnson\",\n\"JobTitleDescription\": \"CEO\",\n\"HomeDepartmentDescription\": \"Boss Team\",\n\"Photo\": [\n{\n\"x\": \"attPuc6gAIHUOHjsY\",\n\"url\": \"http://urlto.com/BillyPhoto.jpg\",\n\"filename\": \"photo.jpg\",\n\"size\": 28956,\n\"type\": \"image/jpeg\"\n}\n],\n\"eid\": \"444555666\"\n},\n\"createdTime\": \"2019-09-23T04:06:48.000Z\"\n}\n,\n{\n\"name\": \"test3\",\n\"fields\": {\n\"FirstName\": \"Susan\",\n\"LastName\": \"Smith\",\n\"JobTitleDescription\": \"CFO\",\n\"HomeDepartmentDescription\": \"Boss Team\",\n\"Photo\": [\n{\n\"x\": \"attPuc6gAIHUOHjsY\",\n\"url\": \"http://urlto.com/SusanPhoto.jpg\",\n\"filename\": \"photo.jpg\",\n\"size\": 28956,\n\"type\": \"image/jpeg\"\n}\n],\n\"eid\": \"777888999\"\n},\n\"createdTime\": \"2019-09-23T04:06:48.000Z\"\n}\n];\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Convert Data 1",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
752,
|
||||
350
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const newItems = [];\n\nfor (const item of items[0].json.data) {\n newItems.push({ json: item });\n}\n\nreturn newItems;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Convert Data 2",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
752,
|
||||
550
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const newItems = [];\n\nfor (const item of items[0].json) {\n newItems.push({ json: item });\n}\n\nreturn newItems;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Merge",
|
||||
"type": "n8n-nodes-base.merge",
|
||||
"position": [
|
||||
990,
|
||||
430
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "mergeByKey",
|
||||
"propertyName1": "interviewers[0].id",
|
||||
"propertyName2": "fields.eid"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Data 1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Convert Data 1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Data 2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Convert Data 2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Convert Data 1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Merge",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Convert Data 2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Merge",
|
||||
"type": "main",
|
||||
"index": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
64
workflows/0010_Writebinaryfile_Create.json
Normal file
64
workflows/0010_Writebinaryfile_Create.json
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Write Binary File",
|
||||
"type": "n8n-nodes-base.writeBinaryFile",
|
||||
"position": [
|
||||
800,
|
||||
350
|
||||
],
|
||||
"parameters": {
|
||||
"fileName": "test.json"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Make Binary",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
600,
|
||||
350
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "items[0].binary = {\n data: {\n data: new Buffer(JSON.stringify(items[0].json, null, 2)).toString('base64')\n }\n};\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Example Data",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
390,
|
||||
350
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "items[0].json = {\n \"text\": \"asdf\",\n \"number\": 1\n};\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Make Binary": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Write Binary File",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Create Example Data": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Make Binary",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
119
workflows/0011_Manual_Copper_Automate_Triggered.json
Normal file
119
workflows/0011_Manual_Copper_Automate_Triggered.json
Normal file
@@ -0,0 +1,119 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
320
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Copper",
|
||||
"type": "n8n-nodes-base.copper",
|
||||
"position": [
|
||||
450,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"name": "Harshil",
|
||||
"resource": "person",
|
||||
"additionalFields": {
|
||||
"emails": {
|
||||
"emailFields": [
|
||||
{
|
||||
"email": "harshil@n8n.io",
|
||||
"category": "work"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"copperApi": "Copper API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Copper1",
|
||||
"type": "n8n-nodes-base.copper",
|
||||
"position": [
|
||||
650,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"personId": "={{$json[\"id\"]}}",
|
||||
"resource": "person",
|
||||
"operation": "update",
|
||||
"updateFields": {
|
||||
"phone_numbers": {
|
||||
"phoneFields": [
|
||||
{
|
||||
"number": "1234567890",
|
||||
"category": "work"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"copperApi": "Copper API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Copper2",
|
||||
"type": "n8n-nodes-base.copper",
|
||||
"position": [
|
||||
850,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"personId": "={{$json[\"id\"]}}",
|
||||
"resource": "person",
|
||||
"operation": "get"
|
||||
},
|
||||
"credentials": {
|
||||
"copperApi": "Copper API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Copper": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Copper1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Copper1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Copper2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Copper",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
119
workflows/0012_Manual_Copper_Automate_Triggered.json
Normal file
119
workflows/0012_Manual_Copper_Automate_Triggered.json
Normal file
@@ -0,0 +1,119 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
320
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Copper",
|
||||
"type": "n8n-nodes-base.copper",
|
||||
"position": [
|
||||
450,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"name": "Harshil",
|
||||
"resource": "person",
|
||||
"additionalFields": {
|
||||
"emails": {
|
||||
"emailFields": [
|
||||
{
|
||||
"email": "harshil@n8n.io",
|
||||
"category": "work"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"copperApi": "Copper API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Copper1",
|
||||
"type": "n8n-nodes-base.copper",
|
||||
"position": [
|
||||
650,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"personId": "={{$json[\"id\"]}}",
|
||||
"resource": "person",
|
||||
"operation": "update",
|
||||
"updateFields": {
|
||||
"phone_numbers": {
|
||||
"phoneFields": [
|
||||
{
|
||||
"number": "1234567890",
|
||||
"category": "work"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"copperApi": "Copper API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Copper2",
|
||||
"type": "n8n-nodes-base.copper",
|
||||
"position": [
|
||||
850,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"personId": "={{$json[\"id\"]}}",
|
||||
"resource": "person",
|
||||
"operation": "get"
|
||||
},
|
||||
"credentials": {
|
||||
"copperApi": "Copper API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Copper": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Copper1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Copper1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Copper2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Copper",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
104
workflows/0013_Manual_Noop_Import_Triggered.json
Normal file
104
workflows/0013_Manual_Noop_Import_Triggered.json
Normal file
@@ -0,0 +1,104 @@
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Loading data into a spreadsheet",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
160,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "Name",
|
||||
"value": "={{$json[\"properties\"][\"firstname\"][\"value\"]}} {{$json[\"properties\"][\"lastname\"][\"value\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Email",
|
||||
"value": "={{$json[\"identity-profiles\"][0][\"identities\"][0][\"value\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Mock data (CRM Contacts)",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"notes": "\"Get contacts\" data from Hubspot node. ",
|
||||
"position": [
|
||||
400,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "var newItems = [];\nnewItems.push({json:{\n \"addedAt\": 1606827045601,\n \"vid\": 1,\n \"canonical-vid\": 1,\n \"merged-vids\": [],\n \"portal-id\": 8924380,\n \"is-contact\": true,\n \"profile-token\": \"AO_T-mMZqmgHPI5CLLlw2qE24AlgWOJUL0LdMb2CegxeMzQK1LXyh7iZAgjNd-00ZdPAfnFU9Lv_7nq6qlrKvfAh8hr_cw-VBH1RCCMgHHYQ06DOXoIGAlViWmMKY-0lF9dv7lBVOMf5\",\n \"profile-url\": \"https://app.hubspot.com/contacts/8924380/contact/1\",\n \"properties\": {\n \"firstname\": {\n \"value\": \"Maria\"\n },\n \"lastmodifieddate\": {\n \"value\": \"1606827057310\"\n },\n \"company\": {\n \"value\": \"HubSpot\"\n },\n \"lastname\": {\n \"value\": \"Johnson (Sample Contact)\"\n }\n },\n \"form-submissions\": [],\n \"identity-profiles\": [\n {\n \"vid\": 1,\n \"saved-at-timestamp\": 1606827045478,\n \"deleted-changed-timestamp\": 0,\n \"identities\": [\n {\n \"type\": \"EMAIL\",\n \"value\": \"emailmaria@hubspot.com\",\n \"timestamp\": 1606827045444,\n \"is-primary\": true\n },\n {\n \"type\": \"LEAD_GUID\",\n \"value\": \"cfa8b21f-164e-4c9a-aab1-1235c81a7d26\",\n \"timestamp\": 1606827045475\n }\n ]\n }\n ],\n \"merge-audits\": []\n }});\nnewItems.push({json:{\n \"addedAt\": 1606827045834,\n \"vid\": 51,\n \"canonical-vid\": 51,\n \"merged-vids\": [],\n \"portal-id\": 8924380,\n \"is-contact\": true,\n \"profile-token\": \"AO_T-mMX1jbZjaachMJ8t1F2yRdvyAvsir5RMvooW7XjbPZTdAv8hc24U0Rnc_PDF1gp1qmc8Tg2hDytOaRXRiWVyg-Eg8rbPFEiXNdU6jfMneow46tsSiQH1yyRf03mMi5ALZXMVfyA\",\n \"profile-url\": \"https://app.hubspot.com/contacts/8924380/contact/51\",\n \"properties\": {\n \"firstname\": {\n \"value\": \"Brian\"\n },\n \"lastmodifieddate\": {\n \"value\": \"1606827060106\"\n },\n \"company\": {\n \"value\": \"HubSpot\"\n },\n \"lastname\": {\n \"value\": \"Halligan (Sample Contact)\"\n }\n },\n \"form-submissions\": [],\n \"identity-profiles\": [\n {\n \"vid\": 51,\n \"saved-at-timestamp\": 1606827045720,\n \"deleted-changed-timestamp\": 0,\n \"identities\": [\n {\n \"type\": \"EMAIL\",\n \"value\": \"bh@hubspot.com\",\n \"timestamp\": 1606827045444,\n \"is-primary\": true\n },\n {\n \"type\": \"LEAD_GUID\",\n \"value\": \"d3749acc-06e1-4511-84fd-7b0d847f6eff\",\n \"timestamp\": 1606827045717\n }\n ]\n }\n ],\n \"merge-audits\": []\n } });\nreturn newItems;"
|
||||
},
|
||||
"notesInFlow": true,
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Replace me",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"notes": "Google Sheet/ Airtable/ Database with an \"append\" or \"Add row\" operation",
|
||||
"position": [
|
||||
910,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"notesInFlow": true,
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Replace me",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Mock data (CRM Contacts)",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Mock data (CRM Contacts)": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
87
workflows/0014_Manual_Coda_Create_Triggered.json
Normal file
87
workflows/0014_Manual_Coda_Create_Triggered.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"id": "102",
|
||||
"name": "Insert data into a new row for a table in Coda",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Coda",
|
||||
"type": "n8n-nodes-base.coda",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"docId": "",
|
||||
"options": {},
|
||||
"tableId": ""
|
||||
},
|
||||
"credentials": {
|
||||
"codaApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "Column 1",
|
||||
"value": "This is column 1 data"
|
||||
},
|
||||
{
|
||||
"name": "Column 2",
|
||||
"value": "This is column 2 data"
|
||||
},
|
||||
{
|
||||
"name": "Column 3",
|
||||
"value": "This is column 3 data"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Coda",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
133
workflows/0015_HTTP_Cron_Update_Webhook.json
Normal file
133
workflows/0015_HTTP_Cron_Update_Webhook.json
Normal file
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"id": "102",
|
||||
"name": "Send updates about the position of the ISS every minute to a topic in ActiveMQ",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
510,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"mode": "everyMinute"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "HTTP Request",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
710,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://api.wheretheiss.at/v1/satellites/25544/positions",
|
||||
"options": {},
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "timestamps",
|
||||
"value": "={{Date.now();}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
910,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "Latitude",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"latitude\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Longitude",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"longitude\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Timestamp",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"timestamp\"]}}"
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "Name",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"name\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "AMQP Sender",
|
||||
"type": "n8n-nodes-base.amqp",
|
||||
"position": [
|
||||
1110,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"sink": "iss-postition",
|
||||
"options": {}
|
||||
},
|
||||
"credentials": {
|
||||
"amqp": "ampq"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "AMQP Sender",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "HTTP Request",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"HTTP Request": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
76
workflows/0016_Manual_Googleslides_Automate_Triggered.json
Normal file
76
workflows/0016_Manual_Googleslides_Automate_Triggered.json
Normal file
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
270,
|
||||
280
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Slides",
|
||||
"type": "n8n-nodes-base.googleSlides",
|
||||
"position": [
|
||||
470,
|
||||
280
|
||||
],
|
||||
"parameters": {
|
||||
"operation": "getSlides",
|
||||
"returnAll": true,
|
||||
"authentication": "oAuth2",
|
||||
"presentationId": "11myCBTn3IT-Iww01WMz43L7HUmQdL6cCR6NCtpsZer0"
|
||||
},
|
||||
"credentials": {
|
||||
"googleSlidesOAuth2Api": "Google Slides Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Slides1",
|
||||
"type": "n8n-nodes-base.googleSlides",
|
||||
"position": [
|
||||
670,
|
||||
280
|
||||
],
|
||||
"parameters": {
|
||||
"download": true,
|
||||
"resource": "page",
|
||||
"operation": "getThumbnail",
|
||||
"pageObjectId": "={{$json[\"objectId\"]}}",
|
||||
"authentication": "oAuth2",
|
||||
"presentationId": "={{$node[\"Google Slides\"].parameter[\"presentationId\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"googleSlidesOAuth2Api": "Google Slides Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Google Slides": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Slides1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Slides",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
54
workflows/0017_Mattermost_Emelia_Automate_Triggered.json
Normal file
54
workflows/0017_Mattermost_Emelia_Automate_Triggered.json
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Mattermost",
|
||||
"type": "n8n-nodes-base.mattermost",
|
||||
"position": [
|
||||
650,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"message": "={{$json[\"contact\"][\"firstName\"]}} from {{$json[\"contact\"][\"company\"]}} has replied back to your campaign.",
|
||||
"channelId": "qx9yo1i9z3bg5qcy5a1oxnh69c",
|
||||
"attachments": [],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"mattermostApi": "Mattermost Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Emelia Trigger",
|
||||
"type": "n8n-nodes-base.emeliaTrigger",
|
||||
"position": [
|
||||
450,
|
||||
200
|
||||
],
|
||||
"webhookId": "f53bc370-a8cb-4748-8f81-be7ae9b94972",
|
||||
"parameters": {
|
||||
"events": [
|
||||
"replied"
|
||||
],
|
||||
"campaignId": "6054d068b374b64365740101"
|
||||
},
|
||||
"credentials": {
|
||||
"emeliaApi": "Emelia API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Emelia Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Mattermost",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
50
workflows/0018_Manual_Chargebee_Create_Triggered.json
Normal file
50
workflows/0018_Manual_Chargebee_Create_Triggered.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "103",
|
||||
"name": "Create a new customer in Chargebee",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Chargebee",
|
||||
"type": "n8n-nodes-base.chargebee",
|
||||
"position": [
|
||||
460,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "customer",
|
||||
"properties": {
|
||||
"last_name": "",
|
||||
"first_name": ""
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"chargebeeApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Chargebee",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
101
workflows/0019_Manual_Uproc_Send_Triggered.json
Normal file
101
workflows/0019_Manual_Uproc_Send_Triggered.json
Normal file
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"id": "103",
|
||||
"name": "verify email",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
440,
|
||||
510
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Email Item",
|
||||
"type": "n8n-nodes-base.functionItem",
|
||||
"position": [
|
||||
640,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "item.email = \"mcolomer@gmail.com\";\nreturn item;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check Email Exists",
|
||||
"type": "n8n-nodes-base.uproc",
|
||||
"position": [
|
||||
850,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"tool": "checkEmailExists",
|
||||
"email": "={{$node[\"Create Email Item\"].json[\"email\"]}}",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"uprocApi": "miquel-uproc"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Email Exists?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1050,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"Check Email Exists\"].json[\"message\"][\"response\"]}}",
|
||||
"value2": "deliverable"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Create Email Item": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check Email Exists",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check Email Exists": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Email Exists?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Email Item",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
54
workflows/0020_Mattermost_Emelia_Automate_Triggered.json
Normal file
54
workflows/0020_Mattermost_Emelia_Automate_Triggered.json
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Mattermost",
|
||||
"type": "n8n-nodes-base.mattermost",
|
||||
"position": [
|
||||
650,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"message": "={{$json[\"contact\"][\"firstName\"]}} from {{$json[\"contact\"][\"company\"]}} has replied back to your campaign.",
|
||||
"channelId": "qx9yo1i9z3bg5qcy5a1oxnh69c",
|
||||
"attachments": [],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"mattermostApi": "Mattermost Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Emelia Trigger",
|
||||
"type": "n8n-nodes-base.emeliaTrigger",
|
||||
"position": [
|
||||
450,
|
||||
200
|
||||
],
|
||||
"webhookId": "f53bc370-a8cb-4748-8f81-be7ae9b94972",
|
||||
"parameters": {
|
||||
"events": [
|
||||
"replied"
|
||||
],
|
||||
"campaignId": "6054d068b374b64365740101"
|
||||
},
|
||||
"credentials": {
|
||||
"emeliaApi": "Emelia API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Emelia Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Mattermost",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
129
workflows/0021_HTTP_Awssqs_Automation_Scheduled.json
Normal file
129
workflows/0021_HTTP_Awssqs_Automation_Scheduled.json
Normal file
@@ -0,0 +1,129 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "AWS SQS",
|
||||
"type": "n8n-nodes-base.awsSqs",
|
||||
"position": [
|
||||
1050,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"queue": "",
|
||||
"options": {}
|
||||
},
|
||||
"credentials": {
|
||||
"aws": "AWS SQS Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
850,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "Latitude",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"latitude\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Longitude",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"longitude\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Timestamp",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"timestamp\"]}}"
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "Name",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"name\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "HTTP Request",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
650,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://api.wheretheiss.at/v1/satellites/25544/positions",
|
||||
"options": {},
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "timestamps",
|
||||
"value": "={{Date.now();}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
450,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"mode": "everyMinute"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "AWS SQS",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "HTTP Request",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"HTTP Request": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
145
workflows/0022_Manual_Webflow_Automate_Triggered.json
Normal file
145
workflows/0022_Manual_Webflow_Automate_Triggered.json
Normal file
@@ -0,0 +1,145 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
200
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Webflow",
|
||||
"type": "n8n-nodes-base.webflow",
|
||||
"position": [
|
||||
450,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"siteId": "601788abebf7aa35c1b038a1",
|
||||
"fieldsUi": {
|
||||
"fieldValues": [
|
||||
{
|
||||
"fieldId": "name",
|
||||
"fieldValue": "n8n"
|
||||
},
|
||||
{
|
||||
"fieldId": "slug",
|
||||
"fieldValue": "n8n"
|
||||
},
|
||||
{
|
||||
"fieldId": "_archived",
|
||||
"fieldValue": "false"
|
||||
},
|
||||
{
|
||||
"fieldId": "_draft",
|
||||
"fieldValue": "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"operation": "create",
|
||||
"collectionId": "601788ab33a62ac6a2a0284c"
|
||||
},
|
||||
"credentials": {
|
||||
"webflowApi": "Webflow Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Webflow2",
|
||||
"type": "n8n-nodes-base.webflow",
|
||||
"position": [
|
||||
650,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"itemId": "={{$json[\"_id\"]}}",
|
||||
"siteId": "601788abebf7aa35c1b038a1",
|
||||
"fieldsUi": {
|
||||
"fieldValues": [
|
||||
{
|
||||
"fieldId": "name",
|
||||
"fieldValue": "={{$json[\"name\"]}}"
|
||||
},
|
||||
{
|
||||
"fieldId": "slug",
|
||||
"fieldValue": "={{$json[\"slug\"]}}"
|
||||
},
|
||||
{
|
||||
"fieldId": "_archived",
|
||||
"fieldValue": "={{$json[\"_archived\"]}}"
|
||||
},
|
||||
{
|
||||
"fieldId": "_draft",
|
||||
"fieldValue": "={{$json[\"_draft\"]}}"
|
||||
},
|
||||
{
|
||||
"fieldId": "avatar",
|
||||
"fieldValue": "https://n8n.io/n8n-logo.png"
|
||||
}
|
||||
]
|
||||
},
|
||||
"operation": "update",
|
||||
"collectionId": "601788ab33a62ac6a2a0284c"
|
||||
},
|
||||
"credentials": {
|
||||
"webflowApi": "Webflow Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Webflow1",
|
||||
"type": "n8n-nodes-base.webflow",
|
||||
"position": [
|
||||
850,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"itemId": "={{$json[\"_id\"]}}",
|
||||
"siteId": "601788abebf7aa35c1b038a1",
|
||||
"collectionId": "601788ab33a62ac6a2a0284c"
|
||||
},
|
||||
"credentials": {
|
||||
"webflowApi": "Webflow Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Webflow": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Webflow2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Webflow2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Webflow1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Webflow",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
132
workflows/0023_HTTP_Googlebigquery_Automation_Scheduled.json
Normal file
132
workflows/0023_HTTP_Googlebigquery_Automation_Scheduled.json
Normal file
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Google BigQuery",
|
||||
"type": "n8n-nodes-base.googleBigQuery",
|
||||
"position": [
|
||||
1010,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"columns": "name, latitude, longitude, timestamp",
|
||||
"options": {},
|
||||
"tableId": "position",
|
||||
"datasetId": "iss",
|
||||
"projectId": "supple-cabinet-289219"
|
||||
},
|
||||
"credentials": {
|
||||
"googleBigQueryOAuth2Api": "BigQuery Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
810,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "latitude",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"latitude\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "longitude",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"longitude\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "timestamp",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"0\"][\"timestamp\"]}}"
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "name",
|
||||
"value": "={{$json[\"0\"][\"name\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "HTTP Request",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
610,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://api.wheretheiss.at/v1/satellites/25544/positions",
|
||||
"options": {},
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "timestamps",
|
||||
"value": "={{Date.now();}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
410,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"mode": "everyMinute"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google BigQuery",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "HTTP Request",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"HTTP Request": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
48
workflows/0024_Manual_Clearbit_Send_Triggered.json
Normal file
48
workflows/0024_Manual_Clearbit_Send_Triggered.json
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"id": "104",
|
||||
"name": "Look up a person using their email in Clearbit",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Clearbit",
|
||||
"type": "n8n-nodes-base.clearbit",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"email": "",
|
||||
"resource": "person",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"clearbitApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Clearbit",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
162
workflows/0025_Manual_Uproc_Automation_Triggered.json
Normal file
162
workflows/0025_Manual_Uproc_Automation_Triggered.json
Normal file
@@ -0,0 +1,162 @@
|
||||
{
|
||||
"id": "104",
|
||||
"name": "location_by_ip",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
440,
|
||||
510
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get Location By IP",
|
||||
"type": "n8n-nodes-base.uproc",
|
||||
"position": [
|
||||
850,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"ip": "={{$node[\"Create IP and Email Item\"].json[\"ip\"]}}",
|
||||
"tool": "getLocationByIp",
|
||||
"group": "geographic",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"uprocApi": "miquel-uproc"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "User in Spain?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1050,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"Get Location By IP\"].json[\"message\"][\"country_code\"]}}",
|
||||
"value2": "ES"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create IP and Email Item",
|
||||
"type": "n8n-nodes-base.functionItem",
|
||||
"position": [
|
||||
640,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "item.ip = \"83.46.131.46\";\nitem.email = \"miquel@uproc.io\";\n\nreturn item;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send English Email",
|
||||
"type": "n8n-nodes-base.awsSes",
|
||||
"position": [
|
||||
1270,
|
||||
650
|
||||
],
|
||||
"parameters": {
|
||||
"body": "Hi,\n\nThank you for your signup!",
|
||||
"subject": "Welcome aboard",
|
||||
"fromEmail": "sample@uproc.io",
|
||||
"toAddresses": [
|
||||
"={{$node[\"Create IP and Email Item\"].json[\"email\"]}}"
|
||||
],
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"aws": "ses"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send Spanish Email",
|
||||
"type": "n8n-nodes-base.awsSes",
|
||||
"position": [
|
||||
1270,
|
||||
420
|
||||
],
|
||||
"parameters": {
|
||||
"body": "Hola,\n\n¡Gracias por registrarte!",
|
||||
"subject": "Bienvenido a bordo",
|
||||
"fromEmail": "sample@uproc.io",
|
||||
"toAddresses": [
|
||||
"={{$node[\"Create IP and Email Item\"].json[\"email\"]}}"
|
||||
],
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"aws": "ses"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"User in Spain?": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Send Spanish Email",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Send English Email",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get Location By IP": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "User in Spain?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create IP and Email Item",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Create IP and Email Item": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get Location By IP",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
121
workflows/0026_Mailcheck_Airtable_Monitor.json
Normal file
121
workflows/0026_Mailcheck_Airtable_Monitor.json
Normal file
@@ -0,0 +1,121 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Airtable",
|
||||
"type": "n8n-nodes-base.airtable",
|
||||
"position": [
|
||||
470,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"table": "Table 1",
|
||||
"operation": "list",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"airtableApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Mailcheck",
|
||||
"type": "n8n-nodes-base.mailcheck",
|
||||
"position": [
|
||||
670,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"email": "={{$json[\"fields\"][\"Email\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"mailcheckApi": "Mailcheck API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
870,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "ID",
|
||||
"value": "={{$node[\"Airtable\"].json[\"id\"]}}"
|
||||
}
|
||||
],
|
||||
"boolean": [
|
||||
{
|
||||
"name": "Valid",
|
||||
"value": "={{$json[\"mxExists\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Airtable1",
|
||||
"type": "n8n-nodes-base.airtable",
|
||||
"position": [
|
||||
1070,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"id": "={{$json[\"ID\"]}}",
|
||||
"table": "=Table 1",
|
||||
"fields": [
|
||||
"Valid"
|
||||
],
|
||||
"options": {},
|
||||
"operation": "update",
|
||||
"application": "={{$node[\"Airtable\"].parameter[\"application\"]}}",
|
||||
"updateAllFields": false
|
||||
},
|
||||
"credentials": {
|
||||
"airtableApi": "Airtable Credentials n8n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Airtable1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Airtable": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Mailcheck",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Mailcheck": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
49
workflows/0027_Mattermost_N8N_Automate_Triggered.json
Normal file
49
workflows/0027_Mattermost_N8N_Automate_Triggered.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "n8n Trigger",
|
||||
"type": "n8n-nodes-base.n8nTrigger",
|
||||
"position": [
|
||||
450,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"events": [
|
||||
"init"
|
||||
]
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Mattermost",
|
||||
"type": "n8n-nodes-base.mattermost",
|
||||
"position": [
|
||||
650,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"message": "=Your n8n instance started at {{$json[\"timestamp\"]}}",
|
||||
"channelId": "toyi3uoycf8rirtm7d5jm15sso",
|
||||
"attachments": [],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"mattermostApi": "Mattermost Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"n8n Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Mattermost",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
95
workflows/0028_Mattermost_Workflow_Automate_Webhook.json
Normal file
95
workflows/0028_Mattermost_Workflow_Automate_Webhook.json
Normal file
@@ -0,0 +1,95 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Webhook",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
490,
|
||||
460
|
||||
],
|
||||
"webhookId": "c0345765-4488-4ac8-a9da-02f647dd2b90",
|
||||
"parameters": {
|
||||
"path": "c0345765-4488-4ac8-a9da-02f647dd2b90",
|
||||
"options": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
690,
|
||||
460
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "Message",
|
||||
"value": "Hello!"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Mattermost",
|
||||
"type": "n8n-nodes-base.mattermost",
|
||||
"position": [
|
||||
690,
|
||||
610
|
||||
],
|
||||
"parameters": {
|
||||
"message": "=The workflow {{$workflow.name}}, was updated.",
|
||||
"channelId": "toyi3uoycf8rirtm7d5jm15sso",
|
||||
"attachments": [],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"mattermostApi": "Mattermost Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Workflow Trigger",
|
||||
"type": "n8n-nodes-base.workflowTrigger",
|
||||
"position": [
|
||||
490,
|
||||
610
|
||||
],
|
||||
"parameters": {
|
||||
"events": [
|
||||
"update"
|
||||
]
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Webhook": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Workflow Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Mattermost",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
145
workflows/0029_Manual_Orbit_Create_Triggered.json
Normal file
145
workflows/0029_Manual_Orbit_Create_Triggered.json
Normal file
@@ -0,0 +1,145 @@
|
||||
{
|
||||
"id": "105",
|
||||
"name": "Create a new member, update the information of the member, create a note and a post for the member in Orbit",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Orbit",
|
||||
"type": "n8n-nodes-base.orbit",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"operation": "upsert",
|
||||
"identityUi": {
|
||||
"identityValue": {
|
||||
"source": "github",
|
||||
"searchBy": "username",
|
||||
"username": ""
|
||||
}
|
||||
},
|
||||
"workspaceId": "425",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"orbitApi": "orbit-review"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Orbit1",
|
||||
"type": "n8n-nodes-base.orbit",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"memberId": "={{$node[\"Orbit\"].json[\"id\"]}}",
|
||||
"operation": "update",
|
||||
"workspaceId": "={{$node[\"Orbit\"].parameter[\"workspaceId\"]}}",
|
||||
"updateFields": {
|
||||
"tagsToAdd": ""
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"orbitApi": "orbit-review"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Orbit2",
|
||||
"type": "n8n-nodes-base.orbit",
|
||||
"position": [
|
||||
850,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"note": "",
|
||||
"memberId": "={{$node[\"Orbit\"].json[\"id\"]}}",
|
||||
"resource": "note",
|
||||
"workspaceId": "={{$node[\"Orbit\"].parameter[\"workspaceId\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"orbitApi": "orbit-review"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Orbit3",
|
||||
"type": "n8n-nodes-base.orbit",
|
||||
"position": [
|
||||
1050,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://medium.com/n8n-io/sending-sms-the-low-code-way-with-airtable-twilio-programmable-sms-and-n8n-90dbde74223e",
|
||||
"memberId": "={{$node[\"Orbit\"].json[\"id\"]}}",
|
||||
"resource": "post",
|
||||
"workspaceId": "={{$node[\"Orbit\"].parameter[\"workspaceId\"]}}",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"orbitApi": "orbit-review"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Orbit": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Orbit1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Orbit1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Orbit2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Orbit2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Orbit3",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Orbit",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
51
workflows/0030_Manual_Clickup_Create_Triggered.json
Normal file
51
workflows/0030_Manual_Clickup_Create_Triggered.json
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"id": "105",
|
||||
"name": "Create a task in ClickUp",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "ClickUp",
|
||||
"type": "n8n-nodes-base.clickUp",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"list": "",
|
||||
"name": "",
|
||||
"team": "",
|
||||
"space": "",
|
||||
"folder": "",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"clickUpApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "ClickUp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
272
workflows/0031_Functionitem_Dropbox_Automation_Webhook.json
Normal file
272
workflows/0031_Functionitem_Dropbox_Automation_Webhook.json
Normal file
@@ -0,0 +1,272 @@
|
||||
{
|
||||
"id": "105",
|
||||
"name": "screenshot",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
440,
|
||||
580
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Web + Email Item",
|
||||
"type": "n8n-nodes-base.functionItem",
|
||||
"position": [
|
||||
630,
|
||||
580
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "item.website = \"https://uproc.io\";\nitem.email = \"miquel@uproc.io\";\n\nreturn item;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send Email",
|
||||
"type": "n8n-nodes-base.awsSes",
|
||||
"position": [
|
||||
1660,
|
||||
600
|
||||
],
|
||||
"parameters": {
|
||||
"body": "=Hi,\n<br><br>\nThese are your screenshots:<br>\n<table border=\"0\">\n<tr>\n<th>Simple screenshot</th><th>Fullpage screenshot</th>\n<tr>\n<td style=\"vertical-align: top; text-align: center\"><img src=\"{{$node[\"Generate Screenshot\"].json[\"message\"][\"result\"]}}\" width=\"320\"></td>\n<td style=\"vertical-align: top; text-align: center\"><img src=\"{{$node[\"Generate FullPage\"].json[\"message\"][\"result\"]}}\" width=\"320\"></td>\n</tr>\n</table>\n<br><br>\nThank you!",
|
||||
"subject": "Your screenshots!",
|
||||
"fromEmail": "miquel@uproc.io",
|
||||
"isBodyHtml": true,
|
||||
"toAddresses": [
|
||||
"={{$node[\"Create Web + Email Item\"].json[\"email\"]}}"
|
||||
],
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"aws": "ses"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Generate FullPage",
|
||||
"type": "n8n-nodes-base.uproc",
|
||||
"position": [
|
||||
850,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Create Web + Email Item\"].json[\"website\"]}}",
|
||||
"tool": "getUrlScreenshot",
|
||||
"group": "image",
|
||||
"width": "640",
|
||||
"fullpage": "yes",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"uprocApi": "miquel-uproc"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Generate Screenshot",
|
||||
"type": "n8n-nodes-base.uproc",
|
||||
"position": [
|
||||
840,
|
||||
680
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Create Web + Email Item\"].json[\"website\"]}}",
|
||||
"tool": "getUrlScreenshot",
|
||||
"group": "image",
|
||||
"width": "640",
|
||||
"fullpage": "no",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"uprocApi": "miquel-uproc"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get File",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1050,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Generate FullPage\"].json[\"message\"][\"result\"]}}",
|
||||
"options": {},
|
||||
"responseFormat": "file",
|
||||
"allowUnauthorizedCerts": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get File1",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1050,
|
||||
680
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Generate Screenshot\"].json[\"message\"][\"result\"]}}",
|
||||
"options": {},
|
||||
"responseFormat": "file",
|
||||
"allowUnauthorizedCerts": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Merge",
|
||||
"type": "n8n-nodes-base.merge",
|
||||
"position": [
|
||||
1460,
|
||||
600
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "passThrough"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Upload Screenshot",
|
||||
"type": "n8n-nodes-base.dropbox",
|
||||
"position": [
|
||||
1270,
|
||||
680
|
||||
],
|
||||
"parameters": {
|
||||
"path": "/screenshots/sample.png",
|
||||
"binaryData": true
|
||||
},
|
||||
"credentials": {
|
||||
"dropboxApi": "dropbox-miquel"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Upload fullpage",
|
||||
"type": "n8n-nodes-base.dropbox",
|
||||
"position": [
|
||||
1270,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"path": "/screenshots/sample_fullpage.png",
|
||||
"binaryData": true
|
||||
},
|
||||
"credentials": {
|
||||
"dropboxApi": "dropbox-miquel"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Merge": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Send Email",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get File": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Upload fullpage",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get File1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Upload Screenshot",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Upload fullpage": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Merge",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Generate FullPage": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get File",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Upload Screenshot": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Merge",
|
||||
"type": "main",
|
||||
"index": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Generate Screenshot": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get File1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Web + Email Item",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Create Web + Email Item": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Generate FullPage",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Generate Screenshot",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
147
workflows/0032_Manual_Filemaker_Automate_Triggered.json
Normal file
147
workflows/0032_Manual_Filemaker_Automate_Triggered.json
Normal file
@@ -0,0 +1,147 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "FileMaker",
|
||||
"type": "n8n-nodes-base.filemaker",
|
||||
"position": [
|
||||
450,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"action": "create",
|
||||
"layout": "My Form Layout",
|
||||
"fieldsParametersUi": {
|
||||
"fields": [
|
||||
{
|
||||
"name": "first_name",
|
||||
"value": "Harshil"
|
||||
},
|
||||
{
|
||||
"name": "last_name",
|
||||
"value": "Agrawal"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"fileMaker": "FileMaker API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
320
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "FileMaker",
|
||||
"type": "n8n-nodes-base.filemaker",
|
||||
"position": [
|
||||
450,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"action": "create",
|
||||
"layout": "My Form Layout",
|
||||
"fieldsParametersUi": {
|
||||
"fields": [
|
||||
{
|
||||
"name": "first_name",
|
||||
"value": "Harshil"
|
||||
},
|
||||
{
|
||||
"name": "last_name",
|
||||
"value": "Agrawal"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"fileMaker": "FileMaker API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "FileMaker2",
|
||||
"type": "n8n-nodes-base.filemaker",
|
||||
"position": [
|
||||
650,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"modId": "={{$json[\"response\"][\"modId\"]}}",
|
||||
"recid": "={{$json[\"response\"][\"recordId\"]}}",
|
||||
"action": "edit",
|
||||
"layout": "My Form Layout",
|
||||
"fieldsParametersUi": {
|
||||
"fields": [
|
||||
{
|
||||
"name": "address_country",
|
||||
"value": "Germany"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"fileMaker": "FileMaker API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "FileMaker3",
|
||||
"type": "n8n-nodes-base.filemaker",
|
||||
"position": [
|
||||
850,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"recid": "={{$node[\"FileMaker\"].json[\"response\"][\"recordId\"]}}",
|
||||
"layout": "My Form Layout"
|
||||
},
|
||||
"credentials": {
|
||||
"fileMaker": "FileMaker API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"FileMaker": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "FileMaker2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"FileMaker2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "FileMaker3",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "FileMaker",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
127
workflows/0033_HTTP_Mqtt_Automation_Webhook.json
Normal file
127
workflows/0033_HTTP_Mqtt_Automation_Webhook.json
Normal file
@@ -0,0 +1,127 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
490,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"mode": "everyMinute"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "HTTP Request",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
690,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://api.wheretheiss.at/v1/satellites/25544/positions",
|
||||
"options": {},
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "timestamps",
|
||||
"value": "={{Date.now()}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
890,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "Name",
|
||||
"value": "={{$json[\"0\"][\"name\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Latitude",
|
||||
"value": "={{$json[\"0\"][\"latitude\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Longitude",
|
||||
"value": "={{$json[\"0\"][\"longitude\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Timestamp",
|
||||
"value": "={{$json[\"0\"][\"timestamp\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "MQTT",
|
||||
"type": "n8n-nodes-base.mqtt",
|
||||
"position": [
|
||||
1090,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"topic": "iss-position",
|
||||
"options": {}
|
||||
},
|
||||
"credentials": {
|
||||
"mqtt": "mqtt"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "MQTT",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "HTTP Request",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"HTTP Request": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
1040
workflows/0034_Code_Filter_Create_Scheduled.json
Normal file
1040
workflows/0034_Code_Filter_Create_Scheduled.json
Normal file
File diff suppressed because it is too large
Load Diff
49
workflows/0035_GoogleSheets_Webhook_Automate_Webhook.json
Normal file
49
workflows/0035_GoogleSheets_Webhook_Automate_Webhook.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Google Sheets",
|
||||
"type": "n8n-nodes-base.googleSheets",
|
||||
"position": [
|
||||
700,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"range": "Problems!A:D",
|
||||
"options": {},
|
||||
"sheetId": "17fzSFl1BZ1njldTfp5lvh8HtS0-pNXH66b7qGZIiGRU"
|
||||
},
|
||||
"credentials": {
|
||||
"googleApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Webhook",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
500,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"path": "webhook",
|
||||
"options": {},
|
||||
"responseData": "allEntries",
|
||||
"responseMode": "lastNode"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Webhook": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Sheets",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
93
workflows/0036_Gmail_GoogleDrive_Import.json
Normal file
93
workflows/0036_Gmail_GoogleDrive_Import.json
Normal file
@@ -0,0 +1,93 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Gmail1",
|
||||
"type": "n8n-nodes-base.gmail",
|
||||
"position": [
|
||||
-34.5,
|
||||
449.5
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "message",
|
||||
"operation": "getAll",
|
||||
"additionalFields": {
|
||||
"format": "resolved",
|
||||
"labelIds": [
|
||||
"Label_1819449526183990002"
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"gmailOAuth2": "Gmail"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Upload File1",
|
||||
"type": "n8n-nodes-base.googleDrive",
|
||||
"position": [
|
||||
115.5,
|
||||
449.5
|
||||
],
|
||||
"parameters": {
|
||||
"name": "={{$binary.attachment_0.fileName}}",
|
||||
"parents": [
|
||||
"1I-tBNWFhH2FwcyiKeBOcGseWktF-nXBr"
|
||||
],
|
||||
"binaryData": true,
|
||||
"resolveData": true,
|
||||
"authentication": "oAuth2",
|
||||
"binaryPropertyName": "attachment_0"
|
||||
},
|
||||
"credentials": {
|
||||
"googleDriveOAuth2Api": "Google Drive OAuth2 API"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get attachment Link",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
280,
|
||||
450
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "mp4_attachment",
|
||||
"value": "={{$json[\"webViewLink\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Gmail1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Upload File1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Upload File1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get attachment Link",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
107
workflows/0037_Manual_Googlebooks_Create_Triggered.json
Normal file
107
workflows/0037_Manual_Googlebooks_Create_Triggered.json
Normal file
@@ -0,0 +1,107 @@
|
||||
{
|
||||
"id": "107",
|
||||
"name": "Get a volume and add it to your bookshelf",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
260,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Books",
|
||||
"type": "n8n-nodes-base.googleBooks",
|
||||
"position": [
|
||||
460,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "volume",
|
||||
"volumeId": "XxUJ2U2FXtYC",
|
||||
"authentication": "oAuth2"
|
||||
},
|
||||
"credentials": {
|
||||
"googleBooksOAuth2Api": "google-books"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Books1",
|
||||
"type": "n8n-nodes-base.googleBooks",
|
||||
"position": [
|
||||
660,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"shelfId": "2",
|
||||
"resource": "bookshelfVolume",
|
||||
"volumeId": "={{$node[\"Google Books\"].json[\"id\"]}}",
|
||||
"operation": "add",
|
||||
"authentication": "oAuth2"
|
||||
},
|
||||
"credentials": {
|
||||
"googleBooksOAuth2Api": "google-books"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Books2",
|
||||
"type": "n8n-nodes-base.googleBooks",
|
||||
"position": [
|
||||
860,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"shelfId": "={{$node[\"Google Books1\"].parameter[\"shelfId\"]}}",
|
||||
"resource": "bookshelfVolume",
|
||||
"myLibrary": true,
|
||||
"authentication": "oAuth2"
|
||||
},
|
||||
"credentials": {
|
||||
"googleBooksOAuth2Api": "google-books"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Google Books": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Books1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Google Books1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Books2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Books",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
71
workflows/0038_Manual_Ical_Send_Triggered.json
Normal file
71
workflows/0038_Manual_Ical_Send_Triggered.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
350,
|
||||
200
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "iCalendar",
|
||||
"type": "n8n-nodes-base.iCal",
|
||||
"position": [
|
||||
550,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"end": "2021-06-11T16:15:00.000Z",
|
||||
"start": "2021-06-11T15:30:00.000Z",
|
||||
"title": "n8n Community Meetup",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send Email",
|
||||
"type": "n8n-nodes-base.emailSend",
|
||||
"position": [
|
||||
750,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"text": "Hey Harshil,\n\nWe are excited to invite you to the n8n community meetup!\n\nWith this email you will find the invite attached.\n\nLooking forward to seeing you at the meetup!\n\nCheers,\nHarshil",
|
||||
"options": {},
|
||||
"subject": "n8n Community Meetup 🚀",
|
||||
"attachments": "data"
|
||||
},
|
||||
"credentials": {
|
||||
"smtp": "Outlook Burner Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"iCalendar": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Send Email",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "iCalendar",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
85
workflows/0039_Calendly_Notion_Automate_Triggered.json
Normal file
85
workflows/0039_Calendly_Notion_Automate_Triggered.json
Normal file
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Calendly Trigger",
|
||||
"type": "n8n-nodes-base.calendlyTrigger",
|
||||
"position": [
|
||||
490,
|
||||
320
|
||||
],
|
||||
"webhookId": "d932d43a-511e-4e54-9a8d-c8da6f6ab7c2",
|
||||
"parameters": {
|
||||
"events": [
|
||||
"invitee.created"
|
||||
]
|
||||
},
|
||||
"credentials": {
|
||||
"calendlyApi": "Calendly API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Notion",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
690,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"blockUi": {
|
||||
"blockValues": []
|
||||
},
|
||||
"resource": "databasePage",
|
||||
"databaseId": "b40628ca-9000-4576-ab2c-4ed3c37e6ee4",
|
||||
"propertiesUi": {
|
||||
"propertyValues": [
|
||||
{
|
||||
"key": "Name|title",
|
||||
"title": "={{$json[\"payload\"][\"invitee\"][\"name\"]}}",
|
||||
"peopleValue": [],
|
||||
"relationValue": [
|
||||
""
|
||||
],
|
||||
"multiSelectValue": []
|
||||
},
|
||||
{
|
||||
"key": "Email|email",
|
||||
"emailValue": "={{$json[\"payload\"][\"invitee\"][\"email\"]}}",
|
||||
"peopleValue": [],
|
||||
"relationValue": [
|
||||
""
|
||||
],
|
||||
"multiSelectValue": []
|
||||
},
|
||||
{
|
||||
"key": "Status|select",
|
||||
"peopleValue": [],
|
||||
"selectValue": "6ad3880b-260a-4d12-999f-5b605e096c1c",
|
||||
"relationValue": [
|
||||
""
|
||||
],
|
||||
"multiSelectValue": []
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": "Notion API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Calendly Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Notion",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
105
workflows/0040_Mattermost_Noop_Automate_Triggered.json
Normal file
105
workflows/0040_Mattermost_Noop_Automate_Triggered.json
Normal file
@@ -0,0 +1,105 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Notion Trigger",
|
||||
"type": "n8n-nodes-base.notionTrigger",
|
||||
"position": [
|
||||
270,
|
||||
350
|
||||
],
|
||||
"parameters": {
|
||||
"event": "pageAddedToDatabase",
|
||||
"pollTimes": {
|
||||
"item": [
|
||||
{
|
||||
"mode": "everyHour"
|
||||
}
|
||||
]
|
||||
},
|
||||
"databaseId": "6ea34c0d-67e8-4614-ad5c-68c665a34763"
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
470,
|
||||
350
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$json[\"Team\"]}}",
|
||||
"value2": "Marketing"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Mattermost",
|
||||
"type": "n8n-nodes-base.mattermost",
|
||||
"position": [
|
||||
670,
|
||||
250
|
||||
],
|
||||
"parameters": {
|
||||
"message": "=New meeting notes were added.\nAgenda: {{$json[\"Agenda\"]}}\nDate: {{$json[\"Date\"][\"start\"]}}\nLink: https://notion.so/{{$json[\"id\"].replace(/-/g,'')}}",
|
||||
"channelId": "64cae1bh6pggtcupfd4ztwby4r",
|
||||
"attachments": [],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"mattermostApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "NoOp",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
668,
|
||||
495
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Mattermost",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "NoOp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Notion Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
23
workflows/0041_Chargebee_Update_Triggered.json
Normal file
23
workflows/0041_Chargebee_Update_Triggered.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"id": "108",
|
||||
"name": "Receive updates for events in Chargebee",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Chargebee Trigger",
|
||||
"type": "n8n-nodes-base.chargebeeTrigger",
|
||||
"position": [
|
||||
700,
|
||||
250
|
||||
],
|
||||
"parameters": {
|
||||
"events": [
|
||||
"*"
|
||||
]
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {}
|
||||
}
|
||||
792
workflows/0042_Crypto_Airtable_Update_Webhook.json
Normal file
792
workflows/0042_Crypto_Airtable_Update_Webhook.json
Normal file
File diff suppressed because one or more lines are too long
120
workflows/0043_Humanticai_Calendly_Automate_Triggered.json
Normal file
120
workflows/0043_Humanticai_Calendly_Automate_Triggered.json
Normal file
@@ -0,0 +1,120 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Notion",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
1050,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"blockUi": {
|
||||
"blockValues": [
|
||||
{
|
||||
"textContent": "=Name: {{$json[\"display_name\"]}}\nPersonality: {{$json[\"personality_analysis\"][\"summary\"][\"ocean\"][\"description\"].join(', ')}}, {{$json[\"personality_analysis\"][\"summary\"][\"disc\"][\"description\"].join(', ')}}\nOpenness: {{$json[\"personality_analysis\"][\"ocean_assessment\"][\"openness\"][\"level\"]}} {{$json[\"personality_analysis\"][\"ocean_assessment\"][\"openness\"][\"score\"]}}\nCalculativeness: {{$json[\"personality_analysis\"][\"disc_assessment\"][\"calculativeness\"][\"level\"]}} {{$json[\"personality_analysis\"][\"disc_assessment\"][\"calculativeness\"][\"score\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"resource": "databasePage",
|
||||
"databaseId": "",
|
||||
"propertiesUi": {
|
||||
"propertyValues": [
|
||||
{
|
||||
"key": "Name|title",
|
||||
"title": "={{$json[\"display_name\"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Humantic AI",
|
||||
"type": "n8n-nodes-base.humanticAi",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"userId": "={{$json[\"payload\"][\"questions_and_responses\"][\"1_response\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"humanticAiApi": "humantic"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Calendly Trigger",
|
||||
"type": "n8n-nodes-base.calendlyTrigger",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"webhookId": "6d38c1f6-42ee-4f44-b424-20943075087b",
|
||||
"parameters": {
|
||||
"events": [
|
||||
"invitee.created"
|
||||
]
|
||||
},
|
||||
"credentials": {
|
||||
"calendlyApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Humantic AI1",
|
||||
"type": "n8n-nodes-base.humanticAi",
|
||||
"position": [
|
||||
850,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"userId": "={{$json[\"results\"][\"userid\"]}}",
|
||||
"options": {},
|
||||
"operation": "get"
|
||||
},
|
||||
"credentials": {
|
||||
"humanticAiApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Humantic AI": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Humantic AI1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Humantic AI1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Notion",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Calendly Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Humantic AI",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,179 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Typeform Trigger",
|
||||
"type": "n8n-nodes-base.typeformTrigger",
|
||||
"position": [
|
||||
0,
|
||||
400
|
||||
],
|
||||
"webhookId": "ad8a87ef-d293-4e48-8d36-838d69ebce0f",
|
||||
"parameters": {
|
||||
"formId": "fBYjtY5e"
|
||||
},
|
||||
"credentials": {
|
||||
"typeformApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Cloud Natural Language",
|
||||
"type": "n8n-nodes-base.googleCloudNaturalLanguage",
|
||||
"position": [
|
||||
200,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"content": "={{$json[\"Any suggestions for us? \"]}}",
|
||||
"options": {}
|
||||
},
|
||||
"credentials": {
|
||||
"googleCloudNaturalLanguageOAuth2Api": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
400,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"number": [
|
||||
{
|
||||
"value1": "={{$node[\"Google Cloud Natural Language\"].json[\"documentSentiment\"][\"score\"]}}",
|
||||
"operation": "larger"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Notion",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
600,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "databasePage",
|
||||
"databaseId": "b7d1130a-3756-4bb3-aa56-0c77bf416437",
|
||||
"propertiesUi": {
|
||||
"propertyValues": [
|
||||
{
|
||||
"key": "Name|title",
|
||||
"title": "={{$node[\"Typeform Trigger\"].json[\"Name\"]}}"
|
||||
},
|
||||
{
|
||||
"key": "Feedback|rich_text",
|
||||
"textContent": "={{$node[\"Typeform Trigger\"].json[\"Any suggestions for us? \"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Slack",
|
||||
"type": "n8n-nodes-base.slack",
|
||||
"position": [
|
||||
800,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"channel": "general",
|
||||
"blocksUi": {
|
||||
"blocksValues": []
|
||||
},
|
||||
"attachments": [
|
||||
{
|
||||
"text": "={{$node[\"Typeform Trigger\"].json[\"Any suggestions for us? \"]}}",
|
||||
"title": "={{$node[\"Typeform Trigger\"].json[\"Name\"]}} {{$node[\"Google Cloud Natural Language\"].json[\"documentSentiment\"][\"score\"]}}"
|
||||
}
|
||||
],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"slackApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Trello",
|
||||
"type": "n8n-nodes-base.trello",
|
||||
"position": [
|
||||
600,
|
||||
500
|
||||
],
|
||||
"parameters": {
|
||||
"name": "=Score: {{$json[\"documentSentiment\"][\"score\"]}}",
|
||||
"listId": "5fbb9e2eb1d5cc0a8a7ab8ac",
|
||||
"description": "=Score: {{$json[\"documentSentiment\"][\"score\"]}}\nFeedback: {{$node[\"Typeform Trigger\"].json[\"Any suggestions for us? \"]}}\nUser: {{$node[\"Typeform Trigger\"].json[\"Name\"]}}",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"trelloApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Notion",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Trello",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Notion": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Slack",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Typeform Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Cloud Natural Language",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Google Cloud Natural Language": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
130
workflows/0045_Manual_Telegram_Import_Triggered.json
Normal file
130
workflows/0045_Manual_Telegram_Import_Triggered.json
Normal file
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"id": "110",
|
||||
"name": "Get SSL Certificate",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
240,
|
||||
290
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Domain Item",
|
||||
"type": "n8n-nodes-base.functionItem",
|
||||
"position": [
|
||||
450,
|
||||
290
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "item.domain = \"n8n.io\";\nreturn item;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get SSL Certificate",
|
||||
"type": "n8n-nodes-base.uproc",
|
||||
"position": [
|
||||
650,
|
||||
290
|
||||
],
|
||||
"parameters": {
|
||||
"tool": "getDomainCertificate",
|
||||
"group": "internet",
|
||||
"domain": "= {{$node[\"Create Domain Item\"].json[\"domain\"]}}",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"uprocApi": "miquel-uproc"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send Expired Alarm",
|
||||
"type": "n8n-nodes-base.telegram",
|
||||
"position": [
|
||||
1070,
|
||||
270
|
||||
],
|
||||
"parameters": {
|
||||
"text": "=The certificate of the domain {{$node[\"Create Domain Item\"].json[\"domain\"]}} has expired!",
|
||||
"chatId": "-1415703867",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"telegramApi": "test killia bot"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Certificate has expired?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
840,
|
||||
290
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"Get SSL Certificate\"].json[\"message\"][\"valid\"]+\"\"}}",
|
||||
"value2": "false"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Create Domain Item": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get SSL Certificate",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get SSL Certificate": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Certificate has expired?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Domain Item",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Certificate has expired?": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Send Expired Alarm",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
81
workflows/0046_Manual_Storyblok_Import_Triggered.json
Normal file
81
workflows/0046_Manual_Storyblok_Import_Triggered.json
Normal file
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"id": "110",
|
||||
"name": "Get all the stories starting with `release` and publish them",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Storyblok",
|
||||
"type": "n8n-nodes-base.storyblok",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"space": 96940,
|
||||
"source": "managementApi",
|
||||
"filters": {
|
||||
"starts_with": "release"
|
||||
},
|
||||
"operation": "getAll"
|
||||
},
|
||||
"credentials": {
|
||||
"storyblokManagementApi": "storyblok-tanay"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Storyblok1",
|
||||
"type": "n8n-nodes-base.storyblok",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"space": "={{$node[\"Storyblok\"].parameter[\"space\"]}}",
|
||||
"source": "managementApi",
|
||||
"options": {},
|
||||
"storyId": "={{$node[\"Storyblok\"].json[\"id\"]}}",
|
||||
"operation": "publish"
|
||||
},
|
||||
"credentials": {
|
||||
"storyblokManagementApi": "storyblok-tanay"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Storyblok": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Storyblok1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Storyblok",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
28
workflows/0047_Clickup_Update_Triggered.json
Normal file
28
workflows/0047_Clickup_Update_Triggered.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"id": "110",
|
||||
"name": "Receive updates for events in ClickUp",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "ClickUp Trigger",
|
||||
"type": "n8n-nodes-base.clickUpTrigger",
|
||||
"position": [
|
||||
700,
|
||||
250
|
||||
],
|
||||
"parameters": {
|
||||
"team": "",
|
||||
"events": [
|
||||
"*"
|
||||
],
|
||||
"filters": {}
|
||||
},
|
||||
"credentials": {
|
||||
"clickUpApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {}
|
||||
}
|
||||
215
workflows/0048_HTTP_Htmlextract_Create_Webhook.json
Normal file
215
workflows/0048_HTTP_Htmlextract_Create_Webhook.json
Normal file
@@ -0,0 +1,215 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Webhook",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"webhookId": "45e2593e-f25d-4be5-9b50-4a7c1e566a9e",
|
||||
"parameters": {
|
||||
"path": "45e2593e-f25d-4be5-9b50-4a7c1e566a9e",
|
||||
"options": {},
|
||||
"httpMethod": "POST",
|
||||
"responseMode": "lastNode"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "HTTP Request",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
850,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=https://{{$json[\"body\"][\"data\"][\"options\"][0][\"value\"]}}",
|
||||
"options": {},
|
||||
"responseFormat": "string"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check type",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"number": [
|
||||
{
|
||||
"value1": "={{$json[\"body\"][\"type\"]}}",
|
||||
"value2": 1,
|
||||
"operation": "notEqual"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Extract Title",
|
||||
"type": "n8n-nodes-base.htmlExtract",
|
||||
"position": [
|
||||
1050,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"extractionValues": {
|
||||
"values": [
|
||||
{
|
||||
"key": "title",
|
||||
"cssSelector": "title"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Add Link to Notion",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
1250,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "databasePage",
|
||||
"databaseId": "8a1638ce-da33-41b7-8fd9-37a4c272ba95",
|
||||
"propertiesUi": {
|
||||
"propertyValues": [
|
||||
{
|
||||
"key": "Name|title",
|
||||
"title": "={{$json[\"title\"]}}"
|
||||
},
|
||||
{
|
||||
"key": "Link|url",
|
||||
"urlValue": "={{$node[\"Check type\"].json[\"body\"][\"data\"][\"options\"][0][\"value\"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": "Notion API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Reply on Discord",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
1450,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "type",
|
||||
"value": 4
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "data.content",
|
||||
"value": "Added Link to notion"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Register URL",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
850,
|
||||
410
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "type",
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"string": []
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Webhook": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check type",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check type": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "HTTP Request",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Register URL",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"HTTP Request": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Extract Title",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Extract Title": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Add Link to Notion",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Add Link to Notion": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Reply on Discord",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
74
workflows/0049_Manual_Awss3_Automate_Triggered.json
Normal file
74
workflows/0049_Manual_Awss3_Automate_Triggered.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
190,
|
||||
160
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "AWS Transcribe",
|
||||
"type": "n8n-nodes-base.awsTranscribe",
|
||||
"position": [
|
||||
590,
|
||||
160
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"mediaFileUri": "=s3://{{$node[\"AWS S3\"].parameter[\"bucketName\"]}}/{{$json[\"Key\"]}}",
|
||||
"detectLanguage": true,
|
||||
"transcriptionJobName": "={{$json[\"Key\"].replace(/\\s/g,'-')}}"
|
||||
},
|
||||
"credentials": {
|
||||
"aws": "AWS Transcribe Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "AWS S3",
|
||||
"type": "n8n-nodes-base.awsS3",
|
||||
"position": [
|
||||
390,
|
||||
160
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"operation": "getAll",
|
||||
"returnAll": true,
|
||||
"bucketName": "n8n-docs"
|
||||
},
|
||||
"credentials": {
|
||||
"aws": "AWS S3 Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"AWS S3": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "AWS Transcribe",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "AWS S3",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
84
workflows/0050_Uptimerobot_Automate.json
Normal file
84
workflows/0050_Uptimerobot_Automate.json
Normal file
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "UptimeRobot2",
|
||||
"type": "n8n-nodes-base.uptimeRobot",
|
||||
"position": [
|
||||
890,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"id": "={{$json[\"id\"]}}",
|
||||
"resource": "monitor",
|
||||
"operation": "get"
|
||||
},
|
||||
"credentials": {
|
||||
"uptimeRobotApi": "UptimeRobot API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "UptimeRobot",
|
||||
"type": "n8n-nodes-base.uptimeRobot",
|
||||
"position": [
|
||||
490,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://n8n.io",
|
||||
"type": 1,
|
||||
"resource": "monitor",
|
||||
"operation": "create",
|
||||
"friendlyName": "n8n"
|
||||
},
|
||||
"credentials": {
|
||||
"uptimeRobotApi": "UptimeRobot API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "UptimeRobot1",
|
||||
"type": "n8n-nodes-base.uptimeRobot",
|
||||
"position": [
|
||||
690,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"id": "={{$json[\"id\"]}}",
|
||||
"resource": "monitor",
|
||||
"operation": "update",
|
||||
"updateFields": {
|
||||
"friendly_name": "n8n website"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"uptimeRobotApi": "UptimeRobot API Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"UptimeRobot": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "UptimeRobot1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"UptimeRobot1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "UptimeRobot2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
105
workflows/0051_Manual_Microsofttodo_Automate_Triggered.json
Normal file
105
workflows/0051_Manual_Microsofttodo_Automate_Triggered.json
Normal file
@@ -0,0 +1,105 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
200
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Microsoft To Do",
|
||||
"type": "n8n-nodes-base.microsoftToDo",
|
||||
"position": [
|
||||
450,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"title": "Document Microsoft To Do node",
|
||||
"operation": "create",
|
||||
"taskListId": "AQMkADAwATNiZmYAZC0zOTkAMy02ZWZjLTAwAi0wMAoALgAAA3i1fHMTrftIhQBzhywL64UBAFB0wRiJW1FJmmlvlAkVFQA-AAACARIAAAA=",
|
||||
"additionalFields": {
|
||||
"importance": "high"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"microsoftToDoOAuth2Api": "Microsoft OAuth Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Microsoft To Do1",
|
||||
"type": "n8n-nodes-base.microsoftToDo",
|
||||
"position": [
|
||||
650,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"taskId": "={{$json[\"id\"]}}",
|
||||
"operation": "update",
|
||||
"taskListId": "={{$node[\"Microsoft To Do\"].parameter[\"taskListId\"]}}",
|
||||
"updateFields": {
|
||||
"status": "inProgress"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"microsoftToDoOAuth2Api": "Microsoft OAuth Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Microsoft To Do2",
|
||||
"type": "n8n-nodes-base.microsoftToDo",
|
||||
"position": [
|
||||
850,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"taskId": "={{$json[\"id\"]}}",
|
||||
"taskListId": "={{$node[\"Microsoft To Do\"].parameter[\"taskListId\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"microsoftToDoOAuth2Api": "Microsoft OAuth Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Microsoft To Do": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Microsoft To Do1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Microsoft To Do1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Microsoft To Do2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Microsoft To Do",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
116
workflows/0052_Manual_Git_Automate_Triggered.json
Normal file
116
workflows/0052_Manual_Git_Automate_Triggered.json
Normal file
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
230,
|
||||
320
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Git",
|
||||
"type": "n8n-nodes-base.git",
|
||||
"position": [
|
||||
430,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"operation": "add",
|
||||
"pathsToAdd": "README.md"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Git1",
|
||||
"type": "n8n-nodes-base.git",
|
||||
"position": [
|
||||
630,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"message": "✨ First commit from n8n",
|
||||
"options": {},
|
||||
"operation": "commit",
|
||||
"repositoryPath": "={{$node[\"Git\"].parameter[\"repositoryPath\"]}}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Git2",
|
||||
"type": "n8n-nodes-base.git",
|
||||
"position": [
|
||||
830,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"repositoryPath": "={{$node[\"Git\"].parameter[\"repositoryPath\"]}}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Git3",
|
||||
"type": "n8n-nodes-base.git",
|
||||
"position": [
|
||||
1030,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"operation": "push",
|
||||
"repositoryPath": "={{$node[\"Git\"].parameter[\"repositoryPath\"]}}"
|
||||
},
|
||||
"executeOnce": false,
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Git": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Git1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Git1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Git2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Git2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Git3",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Git",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
244
workflows/0053_Trello_GoogleCalendar_Create_Scheduled.json
Normal file
244
workflows/0053_Trello_GoogleCalendar_Create_Scheduled.json
Normal file
@@ -0,0 +1,244 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Get Start & End of day",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
850,
|
||||
450
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "var curr = new Date;\nvar first = (curr.getDate());\nvar last = first;\n\nvar firstday = new Date(curr.setDate(first));\nvar lastday = new Date(curr.setDate(last));\n\nbeginning = new Date(firstday.setHours(0,0,0,0));\nending = new Date(lastday.setHours(23,59,59,99));\n\nitems[0].json.from = beginning.toISOString();\nitems[0].json.to = ending.toISOString();\n\nreturn items;items[0].json.myVariable = 1;\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set Trello Card Details",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
1460,
|
||||
640
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "name",
|
||||
"value": "={{$node[\"Split Events In Batches\"].json[\"summary\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "description",
|
||||
"value": "={{$node[\"Split Events In Batches\"].json[\"description\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "duedate",
|
||||
"value": "={{$node[\"Split Events In Batches\"].json[\"start\"][\"dateTime\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "URL",
|
||||
"value": "={{$node[\"Split Events In Batches\"].json[\"htmlLink\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Remove Recurring Tasks",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1650,
|
||||
640
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"Split Events In Batches\"].json[\"summary\"]}}",
|
||||
"value2": "Check email and start day"
|
||||
},
|
||||
{
|
||||
"value1": "={{$node[\"Split Events In Batches\"].json[\"summary\"]}}",
|
||||
"value2": "Lunch"
|
||||
},
|
||||
{
|
||||
"value1": "={{$node[\"Split Events In Batches\"].json[\"summary\"]}}",
|
||||
"value2": "Wrap Up & Clear Desk"
|
||||
},
|
||||
{
|
||||
"value1": "={{$node[\"Split Events In Batches\"].json[\"summary\"]}}",
|
||||
"value2": "Beers and Griping"
|
||||
}
|
||||
],
|
||||
"boolean": []
|
||||
},
|
||||
"combineOperation": "any"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get Todays Events",
|
||||
"type": "n8n-nodes-base.googleCalendar",
|
||||
"position": [
|
||||
1060,
|
||||
450
|
||||
],
|
||||
"parameters": {
|
||||
"options": {
|
||||
"timeMax": "={{$node[\"Get Start & End of day\"].json[\"to\"]}}",
|
||||
"timeMin": "={{$node[\"Get Start & End of day\"].json[\"from\"]}}",
|
||||
"singleEvents": true
|
||||
},
|
||||
"calendar": "amenendez@threatconnect.com",
|
||||
"operation": "getAll"
|
||||
},
|
||||
"credentials": {
|
||||
"googleCalendarOAuth2Api": "Angel TC Calendar API"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Split Events In Batches",
|
||||
"type": "n8n-nodes-base.splitInBatches",
|
||||
"position": [
|
||||
1260,
|
||||
640
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"batchSize": 1
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Trello Cards",
|
||||
"type": "n8n-nodes-base.trello",
|
||||
"position": [
|
||||
1830,
|
||||
730
|
||||
],
|
||||
"parameters": {
|
||||
"name": "={{$node[\"Set Trello Card Details\"].json[\"name\"]}}",
|
||||
"description": "=**Meeting purpose (*Integrations, Playbooks, UI Issues, Project*):**\n\n- Task\n\n**Next Steps (*Task, Assigned to, Checkpoint Date*):**\n\n- Task\n\n**Decisions Made: (*What, Why, Impacts*):**\n\n- Task\n\n**Discussion: (*Items/Knowledge Shared*):**\n\n- Task",
|
||||
"additionalFields": {
|
||||
"due": "={{$node[\"Set Trello Card Details\"].json[\"duedate\"]}}",
|
||||
"idLabels": "",
|
||||
"urlSource": "={{$node[\"Set Trello Card Details\"].json[\"URL\"]}}"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"trelloApi": "Angel Work Trello"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Delete Task",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
1830,
|
||||
560
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Trigger Every Day at 8am",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
650,
|
||||
450
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"hour": 8
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Get Todays Events": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Split Events In Batches",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get Start & End of day": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get Todays Events",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Remove Recurring Tasks": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Delete Task",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Create Trello Cards",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set Trello Card Details": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Remove Recurring Tasks",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Split Events In Batches": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set Trello Card Details",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Get Todays Events",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Trigger Every Day at 8am": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get Start & End of day",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
118
workflows/0054_Manual_Writebinaryfile_Automate_Triggered.json
Normal file
118
workflows/0054_Manual_Writebinaryfile_Automate_Triggered.json
Normal file
@@ -0,0 +1,118 @@
|
||||
{
|
||||
"id": 111,
|
||||
"name": "Standup Bot - Initialize",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
240,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Write Binary File",
|
||||
"type": "n8n-nodes-base.writeBinaryFile",
|
||||
"position": [
|
||||
880,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"fileName": "/home/node/.n8n/standup-bot-config.json"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Move Binary Data",
|
||||
"type": "n8n-nodes-base.moveBinaryData",
|
||||
"position": [
|
||||
660,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "jsonToBinary",
|
||||
"options": {
|
||||
"encoding": "utf8",
|
||||
"fileName": "standup-bot-config.json"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Use Default Config",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
440,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "config.slashCmdToken",
|
||||
"value": "xxxxx"
|
||||
},
|
||||
{
|
||||
"name": "config.mattermostBaseUrl",
|
||||
"value": "https://mattermost.yourdomain.tld"
|
||||
},
|
||||
{
|
||||
"name": "config.botUserToken",
|
||||
"value": "xxxxx"
|
||||
},
|
||||
{
|
||||
"name": "config.n8nWebhookUrl",
|
||||
"value": "https://n8n.yourdomain.tld/webhook/standup-bot/action/f6f9b174745fa4651f750c36957d674c"
|
||||
},
|
||||
{
|
||||
"name": "config.botUserId",
|
||||
"value": "xxxxx"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Move Binary Data": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Write Binary File",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Use Default Config": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Move Binary Data",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Use Default Config",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
401
workflows/0055_Signl4_Interval_Create_Scheduled.json
Normal file
401
workflows/0055_Signl4_Interval_Create_Scheduled.json
Normal file
@@ -0,0 +1,401 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Function",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
230,
|
||||
710
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "// Code here will run only once, no matter how many input items there are.\n// More info and help: https://docs.n8n.io/nodes/n8n-nodes-base.function\n\n// Loop over inputs and add a new field called 'myNewField' to the JSON of each one\nfor (item of items) {\n \nvar type = \"Status\";\n// Acknowledged\nif ((item.json.body.alert.statusCode == 2) && (item.json.body.eventType == 201)) {\n type = \"Acknowledged\";\n}\n// Closed\nif ((item.json.body.alert.statusCode == 4) & (item.json.body.eventType == 201)) {\n type = \"Closed\";\n}\n// New Alert\nif ((item.json.body.alert.statusCode == 1) & (item.json.body.eventType == 200)) {\n type = \"New Alert\";\n}\n\n// No one on duty\nif ((item.json.body.alert.statusCode == 16) & (item.json.body.eventType == 201)) {\n type = \"No one on duty\";\n}\n \n// Annotation\nvar annotation = \"\";\nif ((item.json.body.eventType == 203) & (item.json.body.annotation != undefined) ) {\n type = \"Annotated\";\n annotation = item.json.body.annotation.message;\n}\nif (annotation != \"\") {\n annotation = \": \" + annotation;\n}\n \nvar username = \"System\";\nif (item.json.body.user != undefined) {\n username = item.json.body.user.username;\n}\n \nvar data = type + \" by \" + username + annotation;\n \nitem.json.s4Status = data; // + \": \" + JSON.stringify(item.json);\n\n\nitem.json.s4Up = false;\nif (type == \"Closed\") {\n item.json.s4Up = true;\n}\n\n}\n\n// You can write logs to the browser console\nconsole.log('Done!');\n\nreturn items;\n\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Notion Trigger",
|
||||
"type": "n8n-nodes-base.notionTrigger",
|
||||
"disabled": true,
|
||||
"position": [
|
||||
230,
|
||||
210
|
||||
],
|
||||
"parameters": {
|
||||
"event": "pageAddedToDatabase",
|
||||
"pollTimes": {
|
||||
"item": [
|
||||
{
|
||||
"mode": "everyX",
|
||||
"unit": "minutes",
|
||||
"value": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"databaseId": "0f26823d-f509-43bb-b0e9-e9bb4ab91217"
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": "Notion"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Webhook",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
50,
|
||||
710
|
||||
],
|
||||
"webhookId": "95fd62c7-fc8c-4f6f-8441-bbf85a2da81a",
|
||||
"parameters": {
|
||||
"path": "95fd62c7-fc8c-4f6f-8441-bbf85a2da81a",
|
||||
"options": {},
|
||||
"httpMethod": "POST"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Function",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
230,
|
||||
710
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "// Code here will run only once, no matter how many input items there are.\n// More info and help: https://docs.n8n.io/nodes/n8n-nodes-base.function\n\n// Loop over inputs and add a new field called 'myNewField' to the JSON of each one\nfor (item of items) {\n \nvar type = \"Status\";\n// Acknowledged\nif ((item.json.body.alert.statusCode == 2) && (item.json.body.eventType == 201)) {\n type = \"Acknowledged\";\n}\n// Closed\nif ((item.json.body.alert.statusCode == 4) & (item.json.body.eventType == 201)) {\n type = \"Closed\";\n}\n// New Alert\nif ((item.json.body.alert.statusCode == 1) & (item.json.body.eventType == 200)) {\n type = \"New Alert\";\n}\n\n// No one on duty\nif ((item.json.body.alert.statusCode == 16) & (item.json.body.eventType == 201)) {\n type = \"No one on duty\";\n}\n \n// Annotation\nvar annotation = \"\";\nif ((item.json.body.eventType == 203) & (item.json.body.annotation != undefined) ) {\n type = \"Annotated\";\n annotation = item.json.body.annotation.message;\n}\nif (annotation != \"\") {\n annotation = \": \" + annotation;\n}\n \nvar username = \"System\";\nif (item.json.body.user != undefined) {\n username = item.json.body.user.username;\n}\n \nvar data = type + \" by \" + username + annotation;\n \nitem.json.s4Status = data; // + \": \" + JSON.stringify(item.json);\n\n\nitem.json.s4Up = false;\nif (type == \"Closed\") {\n item.json.s4Up = true;\n}\n\n}\n\n// You can write logs to the browser console\nconsole.log('Done!');\n\nreturn items;\n\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Notion Update",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
420,
|
||||
710
|
||||
],
|
||||
"parameters": {
|
||||
"pageId": "={{$node[\"Webhook\"].json[\"body\"][\"alert\"][\"externalEventId\"]}}",
|
||||
"resource": "databasePage",
|
||||
"operation": "update",
|
||||
"propertiesUi": {
|
||||
"propertyValues": [
|
||||
{
|
||||
"key": "Description|rich_text",
|
||||
"peopleValue": [],
|
||||
"textContent": "={{$node[\"Function\"].json[\"s4Status\"]}}",
|
||||
"relationValue": [],
|
||||
"multiSelectValue": []
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": "Notion"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Interval",
|
||||
"type": "n8n-nodes-base.interval",
|
||||
"position": [
|
||||
50,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"interval": 20
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "SIGNL4 Resolve",
|
||||
"type": "n8n-nodes-base.signl4",
|
||||
"position": [
|
||||
420,
|
||||
540
|
||||
],
|
||||
"parameters": {
|
||||
"operation": "resolve",
|
||||
"externalId": "={{$node[\"Notion Read Open\"].json[\"id\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"signl4Api": "SIGNL4"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "SIGNL4 Alert",
|
||||
"type": "n8n-nodes-base.signl4",
|
||||
"position": [
|
||||
420,
|
||||
210
|
||||
],
|
||||
"parameters": {
|
||||
"message": "=Machine Alert: {{$node[\"Notion Trigger\"].json[\"Name\"]}}",
|
||||
"additionalFields": {
|
||||
"title": "n8n Alert",
|
||||
"externalId": "={{$node[\"Notion Trigger\"].json[\"id\"]}}",
|
||||
"locationFieldsUi": {
|
||||
"locationFieldsValues": {
|
||||
"latitude": "52.3992137",
|
||||
"longitude": "13.0583823"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"signl4Api": "SIGNL4"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Notion Update Read",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
570,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"pageId": "={{$node[\"Notion Read New\"].json[\"id\"]}}",
|
||||
"resource": "databasePage",
|
||||
"operation": "update",
|
||||
"propertiesUi": {
|
||||
"propertyValues": [
|
||||
{
|
||||
"key": "Read|checkbox",
|
||||
"peopleValue": [],
|
||||
"checkboxValue": true,
|
||||
"relationValue": [],
|
||||
"multiSelectValue": []
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": "Notion"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Notion Read Open",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
230,
|
||||
540
|
||||
],
|
||||
"parameters": {
|
||||
"options": {
|
||||
"filter": {
|
||||
"multipleCondition": {
|
||||
"condition": {
|
||||
"and": [
|
||||
{
|
||||
"key": "Up|checkbox",
|
||||
"condition": "equals",
|
||||
"checkboxValue": true,
|
||||
"multiSelectValue": []
|
||||
},
|
||||
{
|
||||
"key": "Read|checkbox",
|
||||
"condition": "equals",
|
||||
"checkboxValue": true,
|
||||
"multiSelectValue": []
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"resource": "databasePage",
|
||||
"operation": "getAll",
|
||||
"databaseId": "0f26823d-f509-43bb-b0e9-e9bb4ab91217"
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": "Notion"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Notion Read New",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
230,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"options": {
|
||||
"filter": {
|
||||
"multipleCondition": {
|
||||
"condition": {
|
||||
"and": [
|
||||
{
|
||||
"key": "Read|checkbox",
|
||||
"condition": "equals",
|
||||
"multiSelectValue": []
|
||||
},
|
||||
{
|
||||
"key": "Up|checkbox",
|
||||
"condition": "equals",
|
||||
"multiSelectValue": []
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"resource": "databasePage",
|
||||
"operation": "getAll",
|
||||
"databaseId": "0f26823d-f509-43bb-b0e9-e9bb4ab91217"
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": "Notion"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Notion Update Final",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
570,
|
||||
540
|
||||
],
|
||||
"parameters": {
|
||||
"pageId": "={{$node[\"Notion Read Open\"].json[\"id\"]}}",
|
||||
"resource": "databasePage",
|
||||
"operation": "update",
|
||||
"propertiesUi": {
|
||||
"propertyValues": [
|
||||
{
|
||||
"key": "Read|checkbox",
|
||||
"peopleValue": [],
|
||||
"relationValue": [],
|
||||
"multiSelectValue": []
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": "Notion"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "SIGNL4 Alert 2",
|
||||
"type": "n8n-nodes-base.signl4",
|
||||
"position": [
|
||||
420,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"message": "=Machine Alert: {{$node[\"Notion Read New\"].json[\"Name\"]}}",
|
||||
"additionalFields": {
|
||||
"title": "n8n Alert",
|
||||
"externalId": "={{$node[\"Notion Read New\"].json[\"id\"]}}",
|
||||
"locationFieldsUi": {
|
||||
"locationFieldsValues": {
|
||||
"latitude": "52.3992137",
|
||||
"longitude": "13.0583823"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"signl4Api": "SIGNL4"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Webhook": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Function",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Function": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Notion Update",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Interval": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Notion Read Open",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Notion Read New",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Notion Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "SIGNL4 Alert",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"SIGNL4 Alert 2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Notion Update Read",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"SIGNL4 Resolve": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Notion Update Final",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Notion Read New": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "SIGNL4 Alert 2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Notion Read Open": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "SIGNL4 Resolve",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
105
workflows/0056_Manual_Uproc_Import_Triggered.json
Normal file
105
workflows/0056_Manual_Uproc_Import_Triggered.json
Normal file
@@ -0,0 +1,105 @@
|
||||
{
|
||||
"id": "112",
|
||||
"name": "Get Company by Name",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
440,
|
||||
510
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Company Item",
|
||||
"type": "n8n-nodes-base.functionItem",
|
||||
"position": [
|
||||
640,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "item.company = \"Killia technologies\";\nitem.country = \"Spain\";\n\nreturn item;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get Company by Name",
|
||||
"type": "n8n-nodes-base.uproc",
|
||||
"position": [
|
||||
850,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"name": "={{$node[\"Create Company Item\"].json[\"company\"]}}",
|
||||
"tool": "getCompanyByName",
|
||||
"group": "company",
|
||||
"country": "={{$node[\"Create Company Item\"].json[\"country\"]}}",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"uprocApi": "miquel-uproc"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Company Found?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1050,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"number": [],
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"Get Company by Name\"].json[\"message\"][\"name\"]}}",
|
||||
"value2": ".+",
|
||||
"operation": "regex"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Create Company Item": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get Company by Name",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get Company by Name": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Company Found?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Company Item",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
29
workflows/0057_Activecampaign_Create_Triggered.json
Normal file
29
workflows/0057_Activecampaign_Create_Triggered.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"id": "112",
|
||||
"name": "Receive updates when a new account is added by an admin in ActiveCampaign",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "ActiveCampaign Trigger",
|
||||
"type": "n8n-nodes-base.activeCampaignTrigger",
|
||||
"position": [
|
||||
700,
|
||||
250
|
||||
],
|
||||
"parameters": {
|
||||
"events": [
|
||||
"account_add"
|
||||
],
|
||||
"sources": [
|
||||
"admin"
|
||||
]
|
||||
},
|
||||
"credentials": {
|
||||
"activeCampaignApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {}
|
||||
}
|
||||
70
workflows/0058_Manual_Readbinaryfile_Automate_Triggered.json
Normal file
70
workflows/0058_Manual_Readbinaryfile_Automate_Triggered.json
Normal file
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"id": 112,
|
||||
"name": "Standup Bot - Read Config",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
240,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Read Config File",
|
||||
"type": "n8n-nodes-base.readBinaryFile",
|
||||
"position": [
|
||||
420,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"filePath": "/home/node/.n8n/standup-bot-config.json",
|
||||
"dataPropertyName": "config"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Convert to JSON",
|
||||
"type": "n8n-nodes-base.moveBinaryData",
|
||||
"position": [
|
||||
600,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"options": {
|
||||
"encoding": "utf8"
|
||||
},
|
||||
"sourceKey": "config"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Read Config File": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Convert to JSON",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Read Config File",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
101
workflows/0059_Manual_Twitter_Automate_Triggered.json
Normal file
101
workflows/0059_Manual_Twitter_Automate_Triggered.json
Normal file
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
600,
|
||||
150
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"number": [
|
||||
{
|
||||
"value1": "={{$runIndex}}",
|
||||
"value2": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "NoOp",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
750,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Twitter",
|
||||
"type": "n8n-nodes-base.twitter",
|
||||
"position": [
|
||||
440,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"text": "Hello from n8n!",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"twitterOAuth1Api": "Dummy Account"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Twitter",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "NoOp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Twitter": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Twitter",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
109
workflows/0060_Travisci_GitHub_Automate_Triggered.json
Normal file
109
workflows/0060_Travisci_GitHub_Automate_Triggered.json
Normal file
@@ -0,0 +1,109 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Github Trigger",
|
||||
"type": "n8n-nodes-base.githubTrigger",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"webhookId": "01518289-14b1-4a45-9d33-39be08f7a544",
|
||||
"parameters": {
|
||||
"owner": "n8n-io",
|
||||
"events": [
|
||||
"push",
|
||||
"pull_request"
|
||||
],
|
||||
"repository": "n8n",
|
||||
"authentication": "oAuth2"
|
||||
},
|
||||
"credentials": {
|
||||
"githubOAuth2Api": "GitHub Credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$json[\"headers\"][\"x-github-event\"]}}",
|
||||
"value2": "push"
|
||||
},
|
||||
{
|
||||
"value1": "={{$json[\"body\"][\"action\"]}}",
|
||||
"value2": "opened"
|
||||
}
|
||||
]
|
||||
},
|
||||
"combineOperation": "any"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "TravisCI",
|
||||
"type": "n8n-nodes-base.travisCi",
|
||||
"position": [
|
||||
850,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"slug": "={{$json[\"body\"][\"repository\"][\"full_name\"]}}",
|
||||
"branch": "=",
|
||||
"operation": "trigger",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"travisCiApi": "Travis API"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "NoOp",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
850,
|
||||
400
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "TravisCI",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "NoOp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Github Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
136
workflows/0061_Noop_GitHub_Automate_Triggered.json
Normal file
136
workflows/0061_Noop_GitHub_Automate_Triggered.json
Normal file
@@ -0,0 +1,136 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Telegram Trigger",
|
||||
"type": "n8n-nodes-base.telegramTrigger",
|
||||
"position": [
|
||||
460,
|
||||
320
|
||||
],
|
||||
"webhookId": "4d8556a0-8fdf-4228-8ee2-3e3c72f5fc57",
|
||||
"parameters": {
|
||||
"updates": [
|
||||
"message"
|
||||
],
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"telegramApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
660,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$json[\"message\"][\"text\"]}}",
|
||||
"value2": "/deploy",
|
||||
"operation": "contains"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "GitHub",
|
||||
"type": "n8n-nodes-base.github",
|
||||
"position": [
|
||||
1060,
|
||||
220
|
||||
],
|
||||
"parameters": {
|
||||
"owner": "n8n-io",
|
||||
"resource": "release",
|
||||
"releaseTag": "={{$json[\"version\"]}}",
|
||||
"repository": "n8n",
|
||||
"authentication": "oAuth2",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"githubOAuth2Api": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
860,
|
||||
220
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "version",
|
||||
"value": "={{$json[\"message\"][\"text\"].split(' ')[1]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "NoOp",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
860,
|
||||
420
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "NoOp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "GitHub",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Telegram Trigger": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
47
workflows/0062_Manual_Pipedrive_Create_Triggered.json
Normal file
47
workflows/0062_Manual_Pipedrive_Create_Triggered.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "113",
|
||||
"name": "Create an deal in Pipedrive",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Pipedrive",
|
||||
"type": "n8n-nodes-base.pipedrive",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"title": "",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"pipedriveApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Pipedrive",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
72
workflows/0063_Manual_Uproc_Import_Triggered.json
Normal file
72
workflows/0063_Manual_Uproc_Import_Triggered.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"id": "113",
|
||||
"name": "Get DNS entries",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
240,
|
||||
290
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Domain Item",
|
||||
"type": "n8n-nodes-base.functionItem",
|
||||
"position": [
|
||||
450,
|
||||
290
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "item.domain = \"n8n.io\";\nreturn item;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get DNS records",
|
||||
"type": "n8n-nodes-base.uproc",
|
||||
"position": [
|
||||
650,
|
||||
290
|
||||
],
|
||||
"parameters": {
|
||||
"tool": "getDomainRecords",
|
||||
"group": "internet",
|
||||
"domain": "= {{$node[\"Create Domain Item\"].json[\"domain\"]}}",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"uprocApi": "miquel-uproc"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Create Domain Item": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get DNS records",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Domain Item",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"id": 113,
|
||||
"name": "Standup Bot - Override Config",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
240,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Write Binary File",
|
||||
"type": "n8n-nodes-base.writeBinaryFile",
|
||||
"position": [
|
||||
600,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"fileName": "/home/node/.n8n/standup-bot-config.json"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Move Binary Data",
|
||||
"type": "n8n-nodes-base.moveBinaryData",
|
||||
"position": [
|
||||
420,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "jsonToBinary",
|
||||
"options": {
|
||||
"encoding": "utf8",
|
||||
"fileName": "standup-bot-config.json"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Move Binary Data": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Write Binary File",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Move Binary Data",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
81
workflows/0065_Openweathermap_Line_Update_Scheduled.json
Normal file
81
workflows/0065_Openweathermap_Line_Update_Scheduled.json
Normal file
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"id": "114",
|
||||
"name": "Send daily weather updates via a message in Line",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Line",
|
||||
"type": "n8n-nodes-base.line",
|
||||
"position": [
|
||||
890,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"message": "=Hey! The temperature outside is {{$node[\"OpenWeatherMap\"].json[\"main\"][\"temp\"]}}°C.",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"lineNotifyOAuth2Api": "line-credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
490,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"hour": 9
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "OpenWeatherMap",
|
||||
"type": "n8n-nodes-base.openWeatherMap",
|
||||
"position": [
|
||||
690,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"cityName": "berlin"
|
||||
},
|
||||
"credentials": {
|
||||
"openWeatherMapApi": "owm"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "OpenWeatherMap",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"OpenWeatherMap": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Line",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
721
workflows/0066_Webhook_Cron_Automate_Scheduled.json
Normal file
721
workflows/0066_Webhook_Cron_Automate_Scheduled.json
Normal file
@@ -0,0 +1,721 @@
|
||||
{
|
||||
"id": 114,
|
||||
"name": "Standup Bot - Worker",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "publish report",
|
||||
"type": "n8n-nodes-base.mattermost",
|
||||
"position": [
|
||||
1840,
|
||||
1040
|
||||
],
|
||||
"parameters": {
|
||||
"message": "={{$node[\"Prep Report\"].json[\"post\"]}}",
|
||||
"channelId": "={{$node[\"Prep Report\"].json[\"channel\"]}}",
|
||||
"attachments": [],
|
||||
"otherOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"mattermostApi": {
|
||||
"id": "2",
|
||||
"name": "Mattermost account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "get user data",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1400,
|
||||
1040
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Read Config 2\"].json[\"config\"][\"mattermostBaseUrl\"]}}/api/v4/users/{{$node[\"Action from MM\"].json[\"body\"][\"user_id\"]}}",
|
||||
"options": {},
|
||||
"jsonParameters": true,
|
||||
"headerParametersJson": "={\n\"Authorization\": \"Bearer {{$item(0).$node[\"Read Config 2\"].json[\"config\"][\"botUserToken\"]}}\"\n}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "open-standup-dialog?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1180,
|
||||
1260
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"Action from MM\"].json[\"body\"][\"context\"][\"action\"]}}",
|
||||
"value2": "open-standup-dialog"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Action from MM",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
520,
|
||||
820
|
||||
],
|
||||
"webhookId": "6a28d86b-9f74-4825-9785-57e0d43b198f",
|
||||
"parameters": {
|
||||
"path": "standup-bot/action/f6f9b174745fa4651f750c36957d674c",
|
||||
"options": {},
|
||||
"httpMethod": "POST"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Slash Cmd from MM",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
520,
|
||||
600
|
||||
],
|
||||
"webhookId": "72732516-1143-430f-8465-d193fe657311",
|
||||
"parameters": {
|
||||
"path": "standup-bot/slashCmd",
|
||||
"options": {},
|
||||
"httpMethod": "POST"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "config?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
740,
|
||||
600
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"Slash Cmd from MM\"].json[\"body\"][\"text\"]}}",
|
||||
"value2": "config"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "open config dialog",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1360,
|
||||
580
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Read Config 1\"].json[\"config\"][\"mattermostBaseUrl\"]}}/api/v4/actions/dialogs/open",
|
||||
"options": {
|
||||
"bodyContentType": "json"
|
||||
},
|
||||
"requestMethod": "POST",
|
||||
"jsonParameters": true,
|
||||
"bodyParametersJson": "={{$json}}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Prep Config Dialog",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1160,
|
||||
580
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const channelId =\n $item(0).$node['Slash Cmd from MM'].json['body']['channel_id'];\n\nconst configuredStandups =\n $item(0).$node['Read Config 1'].json['standups'] ?? [];\n\nlet standup = configuredStandups.find(\n (standup) => standup.channelId == channelId\n);\n\n// define default values:\nif (!standup) {\n standup = {\n title: 'Team Standup',\n time: '09:00',\n days: [1, 2, 3, 4, 5],\n questions: [\n 'What have you accomplished since your last report?',\n 'What do you want to accomplish until your next report?',\n 'Is anything blocking your progress?',\n ],\n users: [],\n };\n}\n\nconst payload = {\n trigger_id: $item(0).$node['Slash Cmd from MM'].json['body']['trigger_id'],\n url: $item(0).$node['Read Config 1'].json['config']['n8nWebhookUrl'],\n dialog: {\n callback_id: 'standup-config',\n title: 'Standup Configuration',\n submit_label: 'Save',\n notify_on_cancel: false,\n state: JSON.stringify({ standupId: channelId }),\n elements: [\n {\n display_name: 'Standup title',\n name: 'title',\n type: 'text',\n placeholder: 'Team Standup',\n default: standup.title,\n optional: true,\n help_text:\n '💡 The standup can be deleted by setting its title to an empty string!',\n },\n {\n display_name: 'Time',\n name: 'time',\n type: 'select',\n default: standup.time,\n options: [\n {\n text: '06:00',\n value: '06:00',\n },\n {\n text: '07:00',\n value: '07:00',\n },\n {\n text: '08:00',\n value: '08:00',\n },\n {\n text: '09:00',\n value: '09:00',\n },\n {\n text: '10:00',\n value: '10:00',\n },\n {\n text: '11:00',\n value: '11:00',\n },\n {\n text: '12:00',\n value: '12:00',\n },\n {\n text: '13:00',\n value: '13:00',\n },\n {\n text: '14:00',\n value: '14:00',\n },\n {\n text: '15:00',\n value: '15:00',\n },\n {\n text: '16:00',\n value: '16:00',\n },\n {\n text: '17:00',\n value: '17:00',\n },\n ],\n },\n {\n display_name: 'Days',\n name: 'days',\n type: 'text',\n placeholder: '1,2,3,4,5',\n help_text:\n 'comma-separated; 0=Sun | 1=Mon | 2=Tue | 3=Wed | 4=Thu | 5=Fri | 6=Sat',\n default: standup.days.join(','),\n },\n {\n display_name: 'Questions',\n name: 'questions',\n type: 'textarea',\n help_text: 'Max 5 questions, one question per line;',\n default: standup.questions.join('\\n'),\n },\n {\n display_name: 'Users',\n name: 'users',\n type: 'textarea',\n help_text: 'One user per line',\n default: standup.users.join('\\n'),\n },\n ],\n },\n};\n\nreturn [{ json: payload }];\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "callback ID?",
|
||||
"type": "n8n-nodes-base.switch",
|
||||
"position": [
|
||||
960,
|
||||
820
|
||||
],
|
||||
"parameters": {
|
||||
"rules": {
|
||||
"rules": [
|
||||
{
|
||||
"value2": "standup-config"
|
||||
},
|
||||
{
|
||||
"output": 1,
|
||||
"value2": "standup-answers"
|
||||
}
|
||||
]
|
||||
},
|
||||
"value1": "={{$node[\"Action from MM\"].json[\"body\"][\"callback_id\"]}}",
|
||||
"dataType": "string",
|
||||
"fallbackOutput": 3
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "standup-config",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
1180,
|
||||
820
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "standup-answers",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
1180,
|
||||
1040
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Prep Config Override",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1400,
|
||||
820
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const mattermostInput = $item(0).$node['Action from MM'].json['body'];\nconst config = $item(0).$node['Read Config 2'].json;\n\n// ensure there is a \"standups\" array:\nconfig['standups'] = config['standups'] ?? [];\n\n// remove the standup from the list:\nconfig['standups'] = config['standups'].filter(\n (standup) => standup.channelId != mattermostInput.channel_id\n);\n\nconst textToArray = (text, separator) => {\n return text\n .split(separator)\n .map((e) => e.trim())\n .filter((e) => e.length > 0);\n};\n\n// a standup can be deleted by updating its title to \"\"\nif (mattermostInput.submission.title.length > 0) {\n const newStandup = {\n channelId: mattermostInput.channel_id,\n title: mattermostInput.submission.title,\n time: mattermostInput.submission.time,\n days: textToArray(mattermostInput.submission.days, ',').map((e) =>\n parseInt(e)\n ),\n users: textToArray(mattermostInput.submission.users, '\\n'),\n questions: textToArray(mattermostInput.submission.questions, '\\n'),\n };\n\n config['standups'].push(newStandup);\n}\n\nreturn [{ json: config }];\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Override Config",
|
||||
"type": "n8n-nodes-base.executeWorkflow",
|
||||
"position": [
|
||||
1620,
|
||||
820
|
||||
],
|
||||
"parameters": {
|
||||
"workflowId": "1005"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Read Config 1",
|
||||
"type": "n8n-nodes-base.executeWorkflow",
|
||||
"position": [
|
||||
960,
|
||||
580
|
||||
],
|
||||
"parameters": {
|
||||
"workflowId": "1004"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Read Config 2",
|
||||
"type": "n8n-nodes-base.executeWorkflow",
|
||||
"position": [
|
||||
740,
|
||||
820
|
||||
],
|
||||
"parameters": {
|
||||
"workflowId": "1004"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "confirm success",
|
||||
"type": "n8n-nodes-base.mattermost",
|
||||
"position": [
|
||||
1840,
|
||||
820
|
||||
],
|
||||
"parameters": {
|
||||
"userId": "={{$node[\"Action from MM\"].json[\"body\"][\"user_id\"]}}",
|
||||
"message": "new standup config was saved successfully",
|
||||
"channelId": "={{$node[\"Action from MM\"].json[\"body\"][\"channel_id\"]}}",
|
||||
"operation": "postEphemeral"
|
||||
},
|
||||
"credentials": {
|
||||
"mattermostApi": {
|
||||
"id": "2",
|
||||
"name": "Mattermost account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Read Config 3",
|
||||
"type": "n8n-nodes-base.executeWorkflow",
|
||||
"position": [
|
||||
740,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"workflowId": "1004"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Filter Due Standups",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
960,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const config = $item(0).$node['Read Config 3'].json;\n\n// ensure there is a \"standups\" array:\nconfig['standups'] = config['standups'] ?? [];\n\nconst now = new Date();\nconst duePattern = `${now.getDay()}_${now\n .getHours()\n .toString()\n .padStart(2, '0')}:00`; // e.g. 1_13:00 => Monday 1 p.m.\n \nconsole.log(duePattern);\n\n// filter standups that are due now:\nconst dueStandups = config.standups.filter((standup) =>\n //true\n standup.days.map((day) => `${day}_${standup.time}`).includes(duePattern)\n);\n\nreturn dueStandups.map((standup) => ({\n json: standup,\n}));\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Prep Request Standup",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1180,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const reminders = items.reduce((prev, curr) => {\n return prev.concat(\n curr.json.users.map((user) => ({\n channelId: curr.json.channelId,\n title: curr.json.title,\n user: user,\n }))\n );\n}, []);\n\nreturn reminders.map((reminder) => ({\n json: reminder,\n}));\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Channel",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1620,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$item(0).$node[\"Read Config 3\"].json[\"config\"][\"mattermostBaseUrl\"]}}/api/v4/channels/direct",
|
||||
"options": {},
|
||||
"requestMethod": "POST",
|
||||
"jsonParameters": true,
|
||||
"bodyParametersJson": "=[\"{{$node[\"Get User\"].json[\"id\"]}}\", \"{{$item(0).$node[\"Read Config 3\"].json[\"config\"][\"botUserId\"]}}\"]",
|
||||
"headerParametersJson": "={\n \"Authorization\": \"Bearer {{$item(0).$node[\"Read Config 3\"].json[\"config\"][\"botUserToken\"]}}\"\n}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Remind Users",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
2060,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$item(0).$node[\"Read Config 3\"].json[\"config\"][\"mattermostBaseUrl\"]}}/api/v4/posts",
|
||||
"options": {},
|
||||
"requestMethod": "POST",
|
||||
"jsonParameters": true,
|
||||
"bodyParametersJson": "={{$json}}",
|
||||
"headerParametersJson": "={\n\"Authorization\": \"Bearer {{$item(0).$node[\"Read Config 3\"].json[\"config\"][\"botUserToken\"]}}\"\n}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get User",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1400,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$item(0).$node[\"Read Config 3\"].json[\"config\"][\"mattermostBaseUrl\"]}}/api/v4/users/username/{{$node[\"Prep Request Standup\"].json[\"user\"]}}",
|
||||
"options": {},
|
||||
"jsonParameters": true,
|
||||
"headerParametersJson": "={\n \"Authorization\": \"Bearer {{$item(0).$node[\"Read Config 3\"].json[\"config\"][\"botUserToken\"]}}\"\n}"
|
||||
},
|
||||
"typeVersion": 1,
|
||||
"continueOnFail": true
|
||||
},
|
||||
{
|
||||
"name": "Prep Reminder",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1840,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const webhookUrl =\n $item(0).$node['Read Config 3'].json['config']['n8nWebhookUrl']; // e.g. https://xyz.app.n8n.cloud/webhook-test/standup-bot/action/top-secret-api-key\n\nconst botUserToken =\n $item(0).$node['Read Config 3'].json['config']['botUserToken'];\n\nlet itemIndex = 0;\n\nfor (item of items) {\n const directChannelId = item.json.id;\n\n const payload = {\n channel_id: directChannelId,\n props: {\n attachments: [\n {\n pretext: \"Hi there! It's time for standup!\",\n text: `Please provide your input for: **${\n $item(itemIndex).$node['Prep Request Standup'].json['title']\n }**`,\n actions: [\n {\n id: webhookUrl.includes('test') ? 'webhook-test' : 'webhook',\n name: 'Provide Update',\n integration: {\n url: webhookUrl,\n context: {\n action: 'open-standup-dialog',\n secret: botUserToken, // not ideal but good enough for now...\n standupId:\n $item(itemIndex).$node['Prep Request Standup'].json[\n 'channelId'\n ],\n },\n },\n },\n ],\n },\n ],\n },\n };\n\n item.json = payload;\n\n itemIndex++;\n}\n\nreturn items;\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Prep Standup Dialog",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1400,
|
||||
1240
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const standupId =\n $item(0).$node['Action from MM'].json['body']['context']['standupId'];\n\nconst postId = $item(0).$node['Action from MM'].json['body']['post_id'];\n\nconst configuredStandups =\n $item(0).$node['Read Config 2'].json['standups'] ?? [];\n\nlet standup = configuredStandups.find(\n (standup) => (standup.channelId == standupId)\n);\n\nconst renderQuestions = (questions) => {\n let questionId = 1;\n\n return questions.map((question) => ({\n display_name: question,\n name: `q${questionId++}`,\n type: 'textarea',\n }));\n};\n\nconst payload = {\n trigger_id: $item(0).$node['Action from MM'].json['body']['trigger_id'],\n url: $item(0).$node['Read Config 2'].json['config']['n8nWebhookUrl'],\n dialog: {\n callback_id: 'standup-answers',\n title: `Report for: ${standup.title}`,\n submit_label: 'Submit',\n notify_on_cancel: false,\n state: JSON.stringify({ standupId, reminderPostId: postId }),\n elements: renderQuestions(standup.questions),\n },\n};\n\nreturn [{ json: payload }];\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "open standup dialog",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1600,
|
||||
1240
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Read Config 2\"].json[\"config\"][\"mattermostBaseUrl\"]}}/api/v4/actions/dialogs/open",
|
||||
"options": {
|
||||
"bodyContentType": "json"
|
||||
},
|
||||
"requestMethod": "POST",
|
||||
"jsonParameters": true,
|
||||
"bodyParametersJson": "={{$json}}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Prep Report",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1620,
|
||||
1040
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const { standupId, reminderPostId } = JSON.parse(\n $item(0).$node['Action from MM'].json['body']['state']\n);\nconst submission = $item(0).$node['Action from MM'].json['body']['submission'];\n\nconst configuredStandups = $item(0).$node['Read Config 2'].json['standups'];\n\nconst standup = configuredStandups.find(\n (standup) => standup.channelId == standupId\n);\n\nconst emptyAnswers = [\n '-',\n '/',\n ' ',\n 'x',\n 'n/a',\n 'nope',\n 'nopes',\n 'no',\n 'none',\n 'no.',\n 'nothing',\n];\n\nfunction capitalize(text) {\n return text.charAt(0).toUpperCase() + text.slice(1);\n}\n\nconst renderPost = (submission, standup) => {\n let postText = `### ${capitalize(\n $item(0).$node['get user data'].json['username']\n )}\\n`;\n\n let questionIndex = 0;\n\n postText += standup.questions\n .map((question) => {\n questionIndex++;\n\n if (\n !submission[`q${questionIndex}`] ||\n emptyAnswers.includes(submission[`q${questionIndex}`].toLowerCase())\n ) {\n return '';\n }\n\n return `#### ${question}\\n${submission[`q${questionIndex}`]}`;\n })\n .join('\\n');\n\n return postText;\n};\n\nreturn [\n {\n json: {\n post: renderPost(submission, standup),\n channel: standupId,\n reminderPostId,\n standupTitle: standup.title,\n },\n },\n];\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Delete ReminderPost",
|
||||
"type": "n8n-nodes-base.mattermost",
|
||||
"position": [
|
||||
2280,
|
||||
1040
|
||||
],
|
||||
"parameters": {
|
||||
"postId": "={{$node[\"Prep Report\"].json[\"reminderPostId\"]}}",
|
||||
"operation": "delete"
|
||||
},
|
||||
"credentials": {
|
||||
"mattermostApi": {
|
||||
"id": "2",
|
||||
"name": "Mattermost account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Update Post",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
2060,
|
||||
1040
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Read Config 2\"].json[\"config\"][\"mattermostBaseUrl\"]}}/api/v4/posts/{{$node[\"Prep Report\"].json[\"reminderPostId\"]}}",
|
||||
"options": {},
|
||||
"requestMethod": "PUT",
|
||||
"jsonParameters": true,
|
||||
"bodyParametersJson": "={\n\"id\":\"{{$node[\"Prep Report\"].json[\"reminderPostId\"]}}\",\n\"message\": \"Thank you for providing your report for {{$node[\"Prep Report\"].json[\"standupTitle\"]}}\"\n}",
|
||||
"headerParametersJson": "={\n\"Content-Type\":\"application/json\",\n\"Authorization\": \"Bearer {{$item(0).$node[\"Read Config 2\"].json[\"config\"][\"botUserToken\"]}}\"\n}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Every hour",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
520,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"mode": "custom",
|
||||
"cronExpression": "0 0 6-12 * * 1-5"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"config?": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Read Config 1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get User": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Channel",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Every hour": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Read Config 3",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Prep Report": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "publish report",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"callback ID?": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "standup-config",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "standup-answers",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[],
|
||||
[
|
||||
{
|
||||
"node": "open-standup-dialog?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Prep Reminder": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Remind Users",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Read Config 1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Prep Config Dialog",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Read Config 2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "callback ID?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Read Config 3": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Filter Due Standups",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"get user data": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Prep Report",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Action from MM": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Read Config 2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Create Channel": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Prep Reminder",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"publish report": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Update Post",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"standup-config": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Prep Config Override",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Override Config": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "confirm success",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"standup-answers": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "get user data",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Slash Cmd from MM": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "config?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Prep Config Dialog": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "open config dialog",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Filter Due Standups": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Prep Request Standup",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Prep Standup Dialog": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "open standup dialog",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Prep Config Override": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Override Config",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Prep Request Standup": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get User",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"open-standup-dialog?": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Prep Standup Dialog",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
101
workflows/0067_Manual_Uproc_Automation_Triggered.json
Normal file
101
workflows/0067_Manual_Uproc_Automation_Triggered.json
Normal file
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"id": "114",
|
||||
"name": "Verify phone numbers",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
440,
|
||||
510
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Phone Item",
|
||||
"type": "n8n-nodes-base.functionItem",
|
||||
"position": [
|
||||
640,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "item.phone = \"+34605281220\";\nreturn item;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Parse and Validate Phone",
|
||||
"type": "n8n-nodes-base.uproc",
|
||||
"position": [
|
||||
850,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"tool": "getPhoneParsed",
|
||||
"phone": "={{$node[\"Create Phone Item\"].json[\"phone\"]}}",
|
||||
"additionalOptions": {}
|
||||
},
|
||||
"credentials": {
|
||||
"uprocApi": "miquel-uproc"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Phone is Valid?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1050,
|
||||
510
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"Parse and Validate Phone\"].json[\"message\"][\"valid\"]+\"\"}}",
|
||||
"value2": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Create Phone Item": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Parse and Validate Phone",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Phone Item",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Parse and Validate Phone": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Phone is Valid?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
236
workflows/0068_Functionitem_Manual_Import_Scheduled.json
Normal file
236
workflows/0068_Functionitem_Manual_Import_Scheduled.json
Normal file
@@ -0,0 +1,236 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
320,
|
||||
170
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Merge",
|
||||
"type": "n8n-nodes-base.merge",
|
||||
"position": [
|
||||
960,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "mergeByIndex"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Move Binary Data",
|
||||
"type": "n8n-nodes-base.moveBinaryData",
|
||||
"position": [
|
||||
1260,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "jsonToBinary",
|
||||
"options": {
|
||||
"useRawData": false
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Map",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
710,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "return items[0].json.data.map(item => {\n return {json: item}\n});"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get Workflow",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"notes": "Don't forget to add your credentials for your n8n instance in this Node. Use Basic Auth for this. ",
|
||||
"position": [
|
||||
830,
|
||||
460
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=http://localhost:5678/rest/workflows/{{$node[\"Map\"].data[\"id\"]}}",
|
||||
"options": {},
|
||||
"authentication": "basicAuth"
|
||||
},
|
||||
"credentials": {
|
||||
"httpBasicAuth": "n8n Creds"
|
||||
},
|
||||
"notesInFlow": false,
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get Workflow List",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"notes": "Don't forget to add your credentials for your n8n instance in this Node. Use Basic Auth for this. ",
|
||||
"position": [
|
||||
520,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"url": "http://localhost:5678/rest/workflows",
|
||||
"options": {},
|
||||
"authentication": "basicAuth"
|
||||
},
|
||||
"credentials": {
|
||||
"httpBasicAuth": "n8n Creds"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "FunctionItem",
|
||||
"type": "n8n-nodes-base.functionItem",
|
||||
"position": [
|
||||
1110,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "item = item.data;\nreturn item;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Drive",
|
||||
"type": "n8n-nodes-base.googleDrive",
|
||||
"position": [
|
||||
1450,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"name": "={{$node[\"Merge\"].data[\"name\"]}}.json",
|
||||
"parents": [
|
||||
"Delete this text and put id for folder you want to upload into in this field. The folder ID can be found by opening the folder in your browser and copying the portion after https://drive.google.com/drive/u/0/folders/"
|
||||
],
|
||||
"binaryData": true,
|
||||
"resolveData": true
|
||||
},
|
||||
"credentials": {
|
||||
"googleApi": "test"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Run Daily at 2:30am",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
330,
|
||||
320
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"hour": 2,
|
||||
"minute": 30
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Map": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get Workflow",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Merge",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Merge": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "FunctionItem",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"FunctionItem": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Move Binary Data",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get Workflow": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Merge",
|
||||
"type": "main",
|
||||
"index": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Move Binary Data": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Drive",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get Workflow List": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Map",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Run Daily at 2:30am": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get Workflow List",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get Workflow List",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
111
workflows/0069_Manual_Gmail_Automation_Triggered.json
Normal file
111
workflows/0069_Manual_Gmail_Automation_Triggered.json
Normal file
@@ -0,0 +1,111 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
-40,
|
||||
240
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Gmail",
|
||||
"type": "n8n-nodes-base.gmail",
|
||||
"position": [
|
||||
150,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "message",
|
||||
"operation": "getAll",
|
||||
"returnAll": true,
|
||||
"additionalFields": {
|
||||
"q": "-in:chats unsubscribe -license -key -password",
|
||||
"format": "ids"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"gmailOAuth2": "Gmail"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Delete Old Gmail",
|
||||
"type": "n8n-nodes-base.gmail",
|
||||
"position": [
|
||||
500,
|
||||
410
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "message",
|
||||
"messageId": "={{$json[\"id\"]}}",
|
||||
"operation": "delete"
|
||||
},
|
||||
"credentials": {
|
||||
"gmailOAuth2": "Gmail"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "SplitInBatches",
|
||||
"type": "n8n-nodes-base.splitInBatches",
|
||||
"position": [
|
||||
310,
|
||||
240
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"batchSize": 100
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Gmail": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "SplitInBatches",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"SplitInBatches": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Delete Old Gmail",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Delete Old Gmail": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "SplitInBatches",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Gmail",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
291
workflows/0070_Splitinbatches_Notion_Export_Scheduled.json
Normal file
291
workflows/0070_Splitinbatches_Notion_Export_Scheduled.json
Normal file
@@ -0,0 +1,291 @@
|
||||
{
|
||||
"id": 115,
|
||||
"name": "Archive empty pages in Notion Database",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Get All Databases",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
240,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "database",
|
||||
"operation": "getAll",
|
||||
"returnAll": true
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": {
|
||||
"id": "36",
|
||||
"name": "Notion account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 2
|
||||
},
|
||||
{
|
||||
"name": "Get All Database Pages",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
420,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"simple": false,
|
||||
"options": {},
|
||||
"resource": "databasePage",
|
||||
"operation": "getAll",
|
||||
"returnAll": true,
|
||||
"databaseId": "={{$json[\"id\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": {
|
||||
"id": "36",
|
||||
"name": "Notion account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 2
|
||||
},
|
||||
{
|
||||
"name": "Get Page Blocks",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
1180,
|
||||
280
|
||||
],
|
||||
"parameters": {
|
||||
"blockId": "={{$json[\"id\"]}}",
|
||||
"resource": "block",
|
||||
"operation": "getAll",
|
||||
"returnAll": true
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": {
|
||||
"id": "36",
|
||||
"name": "Notion account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 2,
|
||||
"alwaysOutputData": true
|
||||
},
|
||||
{
|
||||
"name": "Process Blocks",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1360,
|
||||
280
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "let returnData = {\n json: {\n toDelete: false,\n pageID: $node[\"SplitInBatches\"].json[\"id\"],\n }\n};\n\nif (!items[0].json.id) {\n returnData.json.toDelete = true;\n return [returnData];\n}\n\nfor (item of items) {\n \n let toDelete = false;\n\n let type = item.json.type;\n let data = item.json[type];\n\n if (!toDelete) {\n if (data.text.length == 0) {\n toDelete = true;\n } else {\n returnData.json.toDelete = false;\n break;\n }\n }\n\n returnData.json.toDelete = toDelete;\n}\n\nreturn [returnData];"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "SplitInBatches",
|
||||
"type": "n8n-nodes-base.splitInBatches",
|
||||
"position": [
|
||||
1000,
|
||||
280
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"batchSize": 1
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check for empty properties",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
600,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "for (item of items) {\n\n let toDelete = false;\n for (const key in item.json.properties) {\n let type = item.json.properties[key].type;\n let data = item.json.properties[key][type];\n \n if (!data || data.length == 0) {\n toDelete = true;\n } else {\n toDelete = false;\n break;\n }\n }\n\n item.json.toDelete = toDelete;\n}\n\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Archive Page",
|
||||
"type": "n8n-nodes-base.notion",
|
||||
"position": [
|
||||
1760,
|
||||
260
|
||||
],
|
||||
"parameters": {
|
||||
"pageId": "={{$json[\"pageID\"]}}",
|
||||
"operation": "archive"
|
||||
},
|
||||
"credentials": {
|
||||
"notionApi": {
|
||||
"id": "36",
|
||||
"name": "Notion account"
|
||||
}
|
||||
},
|
||||
"typeVersion": 2
|
||||
},
|
||||
{
|
||||
"name": "If toDelete",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1560,
|
||||
280
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"boolean": [
|
||||
{
|
||||
"value1": "={{$json[\"toDelete\"]}}",
|
||||
"value2": true
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "If Empty Properties",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
760,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"boolean": [
|
||||
{
|
||||
"value1": "={{$json[\"toDelete\"]}}",
|
||||
"value2": true
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Every day @ 2am",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
80,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"hour": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"If toDelete": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Archive Page",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Process Blocks": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "If toDelete",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "SplitInBatches",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"SplitInBatches": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get Page Blocks",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Every day @ 2am": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get All Databases",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get Page Blocks": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Process Blocks",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get All Databases": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get All Database Pages",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"If Empty Properties": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "SplitInBatches",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get All Database Pages": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check for empty properties",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check for empty properties": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "If Empty Properties",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
22
workflows/0071_Pipedrive_Update_Triggered.json
Normal file
22
workflows/0071_Pipedrive_Update_Triggered.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"id": "115",
|
||||
"name": "Receive updates for all changes in Pipedrive",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Pipedrive Trigger",
|
||||
"type": "n8n-nodes-base.pipedriveTrigger",
|
||||
"position": [
|
||||
750,
|
||||
250
|
||||
],
|
||||
"parameters": {},
|
||||
"credentials": {
|
||||
"pipedriveApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {}
|
||||
}
|
||||
83
workflows/0072_Openweathermap_Cron_Update_Scheduled.json
Normal file
83
workflows/0072_Openweathermap_Cron_Update_Scheduled.json
Normal file
@@ -0,0 +1,83 @@
|
||||
{
|
||||
"id": "115",
|
||||
"name": "Send daily weather updates via a message using the Gotify node",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
490,
|
||||
340
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"hour": 9
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "OpenWeatherMap",
|
||||
"type": "n8n-nodes-base.openWeatherMap",
|
||||
"position": [
|
||||
690,
|
||||
340
|
||||
],
|
||||
"parameters": {
|
||||
"cityName": "berlin"
|
||||
},
|
||||
"credentials": {
|
||||
"openWeatherMapApi": "owm"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Gotify",
|
||||
"type": "n8n-nodes-base.gotify",
|
||||
"position": [
|
||||
890,
|
||||
340
|
||||
],
|
||||
"parameters": {
|
||||
"message": "=Hey! The temperature outside is {{$node[\"OpenWeatherMap\"].json[\"main\"][\"temp\"]}}°C.",
|
||||
"additionalFields": {
|
||||
"title": "Today's Weather Update"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"gotifyApi": "gotify-credentials"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "OpenWeatherMap",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"OpenWeatherMap": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Gotify",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
146
workflows/0073_Manual_Rssfeedread_Automate_Triggered.json
Normal file
146
workflows/0073_Manual_Rssfeedread_Automate_Triggered.json
Normal file
@@ -0,0 +1,146 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
270,
|
||||
330
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Merge Data",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1230,
|
||||
430
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const allData = []\n\nlet counter = 0;\ndo {\n try {\n const items = $items(\"RSS Feed Read\", 0, counter).map(item => item.json);\n allData.push.apply(allData, items);\n } catch (error) {\n return [{json: {allData}}]; \n }\n\n counter++;\n} while(true);\n\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Function",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
470,
|
||||
330
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "return [\n {\n json: {\n url: 'https://medium.com/feed/n8n-io',\n }\n },\n {\n json: {\n url: 'https://dev.to/feed/n8n',\n }\n }\n];"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "RSS Feed Read",
|
||||
"type": "n8n-nodes-base.rssFeedRead",
|
||||
"position": [
|
||||
870,
|
||||
330
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$json[\"url\"]}}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "SplitInBatches",
|
||||
"type": "n8n-nodes-base.splitInBatches",
|
||||
"position": [
|
||||
670,
|
||||
330
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"batchSize": 1
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1070,
|
||||
520
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"boolean": [
|
||||
{
|
||||
"value1": true,
|
||||
"value2": "={{$node[\"SplitInBatches\"].context[\"noItemsLeft\"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Merge Data",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "SplitInBatches",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Function": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "SplitInBatches",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"RSS Feed Read": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"SplitInBatches": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "RSS Feed Read",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Function",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
213
workflows/0074_Manual_HTTP_Monitor_Webhook.json
Normal file
213
workflows/0074_Manual_HTTP_Monitor_Webhook.json
Normal file
@@ -0,0 +1,213 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
200,
|
||||
470
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "HTTP Request",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
600,
|
||||
470
|
||||
],
|
||||
"parameters": {
|
||||
"url": "={{$node[\"Config URL\"].json[\"next\"]}}",
|
||||
"options": {},
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "hapikey",
|
||||
"value": "<YOUR_API_KEY>"
|
||||
},
|
||||
{
|
||||
"name": "limit",
|
||||
"value": "100"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "NoOp",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
800,
|
||||
470
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Wait",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1000,
|
||||
470
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "return new Promise((resolve, reject) => {\n setTimeout(() => { resolve([{ json: {} }]) }, 5000);\n })\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Config URL",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
400,
|
||||
470
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "\nlet next = 'https://api.hubapi.com/crm/v3/objects/contacts'\n\nif (items[0].json.next) {\n next = items[0].json.next\n}\n\nreturn [\n {\n json: {\n next : next\n }\n }\n]"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check if pagination?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1250,
|
||||
470
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [],
|
||||
"boolean": [
|
||||
{
|
||||
"value1": "={{$node[\"HTTP Request\"].json[\"paging\"] ? true : false}}",
|
||||
"value2": true
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set next URL",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
890,
|
||||
210
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "next",
|
||||
"value": "={{$node[\"HTTP Request\"].json[\"paging\"][\"next\"][\"link\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"executeOnce": true,
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Combine all data",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1500,
|
||||
560
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "const allData = []\n\nlet counter = 0;\ndo {\n try {\n const items = $items(\"HTTP Request\", 0, counter).map(item => item.json.results);\n \n const aja = items[0].map(item => {\n return { json: item }\n }) \n \n allData.push.apply(allData, aja);\n //allData.push($items(\"Increment\", 0, counter));\n } catch (error) {\n return allData; \n }\n\n counter++;\n} while(true);\n\n"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"NoOp": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Wait",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Wait": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check if pagination?",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Config URL": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "HTTP Request",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"HTTP Request": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "NoOp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set next URL": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Config URL",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check if pagination?": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set next URL",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Combine all data",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Config URL",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
126
workflows/0075_Manual_Noop_Update_Triggered.json
Normal file
126
workflows/0075_Manual_Noop_Update_Triggered.json
Normal file
@@ -0,0 +1,126 @@
|
||||
{
|
||||
"id": "116",
|
||||
"name": "Get all the contacts from GetResponse and update them",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "GetResponse",
|
||||
"type": "n8n-nodes-base.getResponse",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"operation": "getAll",
|
||||
"returnAll": true
|
||||
},
|
||||
"credentials": {
|
||||
"getResponseApi": "getresponse-api"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$node[\"GetResponse\"].json[\"campaign\"][\"name\"]}}",
|
||||
"value2": "n8n",
|
||||
"operation": "notEqual"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "GetResponse1",
|
||||
"type": "n8n-nodes-base.getResponse",
|
||||
"position": [
|
||||
860,
|
||||
200
|
||||
],
|
||||
"parameters": {
|
||||
"contactId": "={{$node[\"IF\"].json[\"contactId\"]}}",
|
||||
"operation": "update",
|
||||
"updateFields": {
|
||||
"campaignId": "WRVXO"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"getResponseApi": "getresponse-api"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "NoOp",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
860,
|
||||
400
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "GetResponse1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "NoOp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"GetResponse": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "GetResponse",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
24
workflows/0076_Trello_Update_Triggered.json
Normal file
24
workflows/0076_Trello_Update_Triggered.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"id": "117",
|
||||
"name": "Receive updates for changes in the specified list in Trello",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Trello Trigger",
|
||||
"type": "n8n-nodes-base.trelloTrigger",
|
||||
"position": [
|
||||
700,
|
||||
250
|
||||
],
|
||||
"parameters": {
|
||||
"id": ""
|
||||
},
|
||||
"credentials": {
|
||||
"trelloApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {}
|
||||
}
|
||||
224
workflows/0077_HTTP_Noop_Sync_Webhook.json
Normal file
224
workflows/0077_HTTP_Noop_Sync_Webhook.json
Normal file
@@ -0,0 +1,224 @@
|
||||
{
|
||||
"id": 117,
|
||||
"name": "Syncro Alert to OpsGenie",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Webhook",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
460,
|
||||
380
|
||||
],
|
||||
"webhookId": "fromsyncro",
|
||||
"parameters": {
|
||||
"path": "fromsyncro",
|
||||
"options": {},
|
||||
"httpMethod": "POST",
|
||||
"responseData": "allEntries",
|
||||
"responseMode": "lastNode"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
780,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "AlertID",
|
||||
"value": "={{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"id\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Description",
|
||||
"value": "={{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"computer_name\"]}} ({{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"customer\"][\"business_then_name\"]}}): {{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"formatted_output\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Alert",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1180,
|
||||
260
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://api.opsgenie.com/v2/alerts",
|
||||
"options": {},
|
||||
"requestMethod": "POST",
|
||||
"authentication": "headerAuth",
|
||||
"bodyParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "message",
|
||||
"value": "={{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"computer_name\"]}} ({{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"customer\"][\"business_then_name\"]}}): {{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"formatted_output\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "alias",
|
||||
"value": "={{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"id\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "description",
|
||||
"value": "={{$node[\"Webhook\"].json[\"body\"][\"text\"]}}\n{{$node[\"Webhook\"].json[\"body\"][\"link\"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"httpHeaderAuth": {
|
||||
"id": null,
|
||||
"name": "OpsGenie"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Close Alert",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1180,
|
||||
460
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=https://api.opsgenie.com/v2/alerts/{{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"id\"]}}/close?identifierType=alias",
|
||||
"options": {},
|
||||
"requestMethod": "POST",
|
||||
"authentication": "headerAuth",
|
||||
"bodyParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "note",
|
||||
"value": "Issue resolved automatically according to Syncro."
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"httpHeaderAuth": {
|
||||
"id": null,
|
||||
"name": "OpsGenie"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "NoOp",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
780,
|
||||
560
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
940,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"boolean": [
|
||||
{
|
||||
"value1": "={{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"resolved\"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Switch",
|
||||
"type": "n8n-nodes-base.switch",
|
||||
"position": [
|
||||
620,
|
||||
380
|
||||
],
|
||||
"parameters": {
|
||||
"rules": {
|
||||
"rules": [
|
||||
{
|
||||
"value2": "agent_offline_trigger"
|
||||
}
|
||||
]
|
||||
},
|
||||
"value1": "={{$node[\"Webhook\"].json[\"body\"][\"attributes\"][\"properties\"][\"trigger\"]}}",
|
||||
"dataType": "string"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Alert",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Close Alert",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Switch": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "NoOp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Webhook": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Switch",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
252
workflows/0078_Manual_Slack_Monitor_Webhook.json
Normal file
252
workflows/0078_Manual_Slack_Monitor_Webhook.json
Normal file
@@ -0,0 +1,252 @@
|
||||
{
|
||||
"id": 118,
|
||||
"name": "Google Calendar to Slack Status & Philips Hue",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"disabled": true,
|
||||
"position": [
|
||||
420,
|
||||
420
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Google Calendar",
|
||||
"type": "n8n-nodes-base.googleCalendar",
|
||||
"position": [
|
||||
720,
|
||||
600
|
||||
],
|
||||
"parameters": {
|
||||
"eventId": "={{$node[\"Event Started\"].json[\"id\"].split(\"_\")[0]}}",
|
||||
"options": {},
|
||||
"calendar": "youremail@domain.com",
|
||||
"operation": "get"
|
||||
},
|
||||
"credentials": {
|
||||
"googleCalendarOAuth2Api": {
|
||||
"id": "15",
|
||||
"name": "GoogleCalendar - Personal"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Light - Busy",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1220,
|
||||
180
|
||||
],
|
||||
"parameters": {
|
||||
"url": "WEBHOOK1",
|
||||
"options": {},
|
||||
"requestMethod": "POST"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Light - Available",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1220,
|
||||
600
|
||||
],
|
||||
"parameters": {
|
||||
"url": "WEBHOOK3",
|
||||
"options": {},
|
||||
"requestMethod": "POST"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Switch",
|
||||
"type": "n8n-nodes-base.switch",
|
||||
"position": [
|
||||
1040,
|
||||
460
|
||||
],
|
||||
"parameters": {
|
||||
"rules": {
|
||||
"rules": [
|
||||
{
|
||||
"value2": "4dw_doing",
|
||||
"operation": "startsWith"
|
||||
},
|
||||
{
|
||||
"value2": "4dw_managing",
|
||||
"operation": "startsWith"
|
||||
},
|
||||
{
|
||||
"value2": "4dw_leading",
|
||||
"operation": "startsWith"
|
||||
},
|
||||
{
|
||||
"output": 1,
|
||||
"value2": "4dw_living",
|
||||
"operation": "startsWith"
|
||||
}
|
||||
]
|
||||
},
|
||||
"value1": "={{$json[\"calColor\"]}}",
|
||||
"dataType": "string",
|
||||
"fallbackOutput": 3
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Light - Personal",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1220,
|
||||
340
|
||||
],
|
||||
"parameters": {
|
||||
"url": "WEBHOOK2",
|
||||
"options": {},
|
||||
"requestMethod": "POST"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Event Started",
|
||||
"type": "n8n-nodes-base.googleCalendarTrigger",
|
||||
"position": [
|
||||
540,
|
||||
600
|
||||
],
|
||||
"parameters": {
|
||||
"options": {},
|
||||
"pollTimes": {
|
||||
"item": [
|
||||
{
|
||||
"mode": "everyX",
|
||||
"unit": "minutes",
|
||||
"value": 5
|
||||
}
|
||||
]
|
||||
},
|
||||
"triggerOn": "eventStarted",
|
||||
"calendarId": "youremail@domain.com"
|
||||
},
|
||||
"credentials": {
|
||||
"googleCalendarOAuth2Api": {
|
||||
"id": "15",
|
||||
"name": "GoogleCalendar - Personal"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Slack - Status",
|
||||
"type": "n8n-nodes-base.slack",
|
||||
"position": [
|
||||
1040,
|
||||
720
|
||||
],
|
||||
"parameters": {
|
||||
"resource": "userProfile",
|
||||
"operation": "update",
|
||||
"additionalFields": {
|
||||
"status_text": "={{$json[\"summary\"]}}",
|
||||
"status_emoji": "=:{{$json[\"calColor\"]}}:"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"slackApi": {
|
||||
"id": "17",
|
||||
"name": "CompanySlack"
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set CalColor",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
880,
|
||||
600
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "for (item of items) {\n\n switch (item.json.colorId) {\n case '1':\n calColor = 'Lavendar';\n break;\n case '2':\n calColor = '4dw_leading';\n break;\n case '3':\n calColor = 'Grape';\n break;\n case '4':\n calColor = 'Flamingo';\n break;\n case '5':\n calColor = '4dw_managing';\n break;\n case '6':\n calColor = 'Tangerine';\n break;\n case '7':\n calColor = '4dw_living';\n break;\n case '8':\n calColor = 'Graphite';\n break;\n case '9':\n calColor = 'Blueberry';\n break;\n case '10':\n calColor = 'Basil';\n break;\n case '11':\n calColor = '4dw_doing';\n break;\n default:\n calColor = 'undefined';\n }\n item.json.calColor = calColor;\n}\n\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Switch": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Light - Busy",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Light - Personal",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[],
|
||||
[
|
||||
{
|
||||
"node": "Light - Available",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set CalColor": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Slack - Status",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Switch",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Event Started": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Google Calendar",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Google Calendar": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set CalColor",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
178
workflows/0079_Manual_Strapi_Create_Triggered.json
Normal file
178
workflows/0079_Manual_Strapi_Create_Triggered.json
Normal file
@@ -0,0 +1,178 @@
|
||||
{
|
||||
"id": "119",
|
||||
"name": "Create, update, and get an entry in Strapi",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Strapi",
|
||||
"type": "n8n-nodes-base.strapi",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"columns": "Title, Content, Description",
|
||||
"operation": "create",
|
||||
"contentType": "posts"
|
||||
},
|
||||
"credentials": {
|
||||
"strapiApi": "strapi"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "Title",
|
||||
"value": "Automate Strapi with n8n"
|
||||
},
|
||||
{
|
||||
"name": "Content",
|
||||
"value": "Strapi is a headless CMS. We will use Strapi and n8n to automate our content creation workflows."
|
||||
},
|
||||
{
|
||||
"name": "Description",
|
||||
"value": "Learn how to automate Strapi with n8n."
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Strapi1",
|
||||
"type": "n8n-nodes-base.strapi",
|
||||
"position": [
|
||||
1050,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"columns": "slug",
|
||||
"operation": "update",
|
||||
"contentType": "={{$node[\"Strapi\"].parameter[\"contentType\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"strapiApi": "strapi"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set1",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
850,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "id",
|
||||
"value": "={{$node[\"Strapi\"].json[\"id\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "slug",
|
||||
"value": "automate-strapi-with-n8n"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Strapi2",
|
||||
"type": "n8n-nodes-base.strapi",
|
||||
"position": [
|
||||
1250,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"entryId": "={{$node[\"Strapi1\"].json[\"id\"]}}",
|
||||
"contentType": "={{$node[\"Strapi\"].parameter[\"contentType\"]}}"
|
||||
},
|
||||
"credentials": {
|
||||
"strapiApi": "strapi"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Strapi",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Strapi1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Strapi": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Strapi1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Strapi2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
47
workflows/0080_Manual_Disqus_Import_Triggered.json
Normal file
47
workflows/0080_Manual_Disqus_Import_Triggered.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "119",
|
||||
"name": "Get details of a forum in Disqus",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "On clicking 'execute'",
|
||||
"type": "n8n-nodes-base.manualTrigger",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Disqus",
|
||||
"type": "n8n-nodes-base.disqus",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"id": "hackernoon",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"disqusApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"On clicking 'execute'": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Disqus",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
124
workflows/0081_Xml_Respondtowebhook_Automate_Webhook.json
Normal file
124
workflows/0081_Xml_Respondtowebhook_Automate_Webhook.json
Normal file
@@ -0,0 +1,124 @@
|
||||
{
|
||||
"meta": {
|
||||
"instanceId": "8c8c5237b8e37b006a7adce87f4369350c58e41f3ca9de16196d3197f69eabcd"
|
||||
},
|
||||
"nodes": [
|
||||
{
|
||||
"id": "302c87d4-2c92-40a0-9a77-cef4ddd7db6d",
|
||||
"name": "XML",
|
||||
"type": "n8n-nodes-base.xml",
|
||||
"position": [
|
||||
840,
|
||||
440
|
||||
],
|
||||
"parameters": {
|
||||
"mode": "jsonToxml",
|
||||
"options": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "88ba5ee7-4788-452f-9d64-bf192fe90e5f",
|
||||
"name": "Set",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
660,
|
||||
440
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "number",
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "string",
|
||||
"value": "my text"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "6cda9dc3-0fdd-4f3a-aecf-0ff0efd28c33",
|
||||
"name": "Respond to Webhook",
|
||||
"type": "n8n-nodes-base.respondToWebhook",
|
||||
"position": [
|
||||
1020,
|
||||
440
|
||||
],
|
||||
"parameters": {
|
||||
"options": {
|
||||
"responseHeaders": {
|
||||
"entries": [
|
||||
{
|
||||
"name": "content-type",
|
||||
"value": "application/xml"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"respondWith": "text",
|
||||
"responseBody": "={{ $json.data }}"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"id": "94644433-fb9b-4532-81d2-d9673eb6e15e",
|
||||
"name": "Webhook",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
480,
|
||||
440
|
||||
],
|
||||
"webhookId": "89fb6783-adc5-4cbc-bacc-dbd7b85df403",
|
||||
"parameters": {
|
||||
"path": "test",
|
||||
"options": {},
|
||||
"responseMode": "responseNode"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Set": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "XML",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"XML": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Respond to Webhook",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Webhook": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
95
workflows/0082_GoogleSheets_Interval_Process_Scheduled.json
Normal file
95
workflows/0082_GoogleSheets_Interval_Process_Scheduled.json
Normal file
@@ -0,0 +1,95 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Read Sheet",
|
||||
"type": "n8n-nodes-base.googleSheets",
|
||||
"position": [
|
||||
450,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"sheetId": "1GT2dc0dOkAC1apY0UlTKY9vitBl8PtKrILvFiAy5VBs"
|
||||
},
|
||||
"credentials": {
|
||||
"googleApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Convert to XLS",
|
||||
"type": "n8n-nodes-base.spreadsheetFile",
|
||||
"position": [
|
||||
650,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"operation": "toFile"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Upload Dropbox",
|
||||
"type": "n8n-nodes-base.dropbox",
|
||||
"position": [
|
||||
850,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"path": "/my-sheets/prices.xls",
|
||||
"binaryData": true
|
||||
},
|
||||
"credentials": {
|
||||
"dropboxApi": ""
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Trigger all 15 min",
|
||||
"type": "n8n-nodes-base.interval",
|
||||
"position": [
|
||||
250,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"unit": "minutes",
|
||||
"interval": 15
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Read Sheet": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Convert to XLS",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Convert to XLS": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Upload Dropbox",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Trigger all 15 min": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Read Sheet",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
675
workflows/0083_Noop_HTTP_Automation_Webhook.json
Normal file
675
workflows/0083_Noop_HTTP_Automation_Webhook.json
Normal file
@@ -0,0 +1,675 @@
|
||||
{
|
||||
"id": 11,
|
||||
"name": "Plex Automatic Throttler",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Webhook",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [
|
||||
60,
|
||||
440
|
||||
],
|
||||
"webhookId": "72a05ff6-05f5-4e7a-9eee-54a350bb6a47",
|
||||
"parameters": {
|
||||
"path": "72a05ff6-05f5-4e7a-9eee-54a350bb6a47",
|
||||
"options": {},
|
||||
"httpMethod": "POST"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Switch",
|
||||
"type": "n8n-nodes-base.switch",
|
||||
"position": [
|
||||
640,
|
||||
580
|
||||
],
|
||||
"parameters": {
|
||||
"rules": {
|
||||
"rules": [
|
||||
{
|
||||
"value2": "media.resume",
|
||||
"operation": "contains"
|
||||
},
|
||||
{
|
||||
"output": 1,
|
||||
"value2": "media.play",
|
||||
"operation": "contains"
|
||||
},
|
||||
{
|
||||
"output": 2,
|
||||
"value2": "media.pause",
|
||||
"operation": "contains"
|
||||
},
|
||||
{
|
||||
"output": 3,
|
||||
"value2": "media.stop",
|
||||
"operation": "contains"
|
||||
}
|
||||
]
|
||||
},
|
||||
"value1": "={{$node[\"Webhook\"].json[\"body\"][\"payload\"]}}",
|
||||
"dataType": "string"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Resume",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
860,
|
||||
280
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check if Local",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
460,
|
||||
440
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{
|
||||
"value1": "={{$json[\"body\"][\"payload\"]}}",
|
||||
"value2": "\"local\":false",
|
||||
"operation": "contains"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Play",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
860,
|
||||
440
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Don't Do Anything",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
660,
|
||||
220
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Pause",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
860,
|
||||
680
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Stop",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
860,
|
||||
840
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get QB Cookie",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1260,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=http://{{$node[\"Global Variables\"].json[\"qbittorent\"][\"internalIP\"]}}:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}/api/v2/auth/login",
|
||||
"options": {
|
||||
"fullResponse": true
|
||||
},
|
||||
"responseFormat": "string",
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "username",
|
||||
"value": "={{$node[\"Global Variables\"].json[\"qbittorent\"][\"username\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "password",
|
||||
"value": "={{$node[\"Global Variables\"].json[\"qbittorent\"][\"password\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"headerParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Referer",
|
||||
"value": "=http://localhost:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Get QB Cookie1",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1260,
|
||||
760
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=http://{{$node[\"Global Variables\"].json[\"qbittorent\"][\"internalIP\"]}}:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}/api/v2/auth/login",
|
||||
"options": {
|
||||
"fullResponse": true
|
||||
},
|
||||
"responseFormat": "string",
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "username",
|
||||
"value": "={{$node[\"Global Variables\"].json[\"qbittorent\"][\"username\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "password",
|
||||
"value": "={{$node[\"Global Variables\"].json[\"qbittorent\"][\"password\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"headerParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Referer",
|
||||
"value": "=http://localhost:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Global Variables",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
280,
|
||||
440
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"string": [
|
||||
{
|
||||
"name": "qbittorent.username",
|
||||
"value": "yourusername"
|
||||
},
|
||||
{
|
||||
"name": "qbittorent.password",
|
||||
"value": "yourpassword"
|
||||
},
|
||||
{
|
||||
"name": "qbittorent.internalIP",
|
||||
"value": "192.168.1.218"
|
||||
},
|
||||
{
|
||||
"name": "qbittorent.port",
|
||||
"value": "2020"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check Throttle State",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1460,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=http://{{$node[\"Global Variables\"].json[\"qbittorent\"][\"internalIP\"]}}:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}/api/v2/transfer/speedLimitsMode",
|
||||
"options": {
|
||||
"fullResponse": true
|
||||
},
|
||||
"requestMethod": "POST",
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Cookie",
|
||||
"value": "={{$node[\"Get QB Cookie\"].json[\"headers\"][\"set-cookie\"][0].match(/[^;]*/).toString()}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"headerParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Referer",
|
||||
"value": "=http://localhost:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Cookie",
|
||||
"value": "={{$node[\"Get QB Cookie\"].json[\"headers\"][\"set-cookie\"][0].match(/[^;]*/).toString()}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check if Throttled",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1680,
|
||||
360
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"number": [
|
||||
{
|
||||
"value1": "={{$json[\"body\"]}}",
|
||||
"value2": 1,
|
||||
"operation": "equal"
|
||||
}
|
||||
],
|
||||
"string": []
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Do Nothing",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
1900,
|
||||
260
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check Throttle State2",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1460,
|
||||
760
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=http://{{$node[\"Global Variables\"].json[\"qbittorent\"][\"internalIP\"]}}:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}/api/v2/transfer/speedLimitsMode",
|
||||
"options": {
|
||||
"fullResponse": true
|
||||
},
|
||||
"requestMethod": "POST",
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Cookie",
|
||||
"value": "={{$node[\"Get QB Cookie1\"].json[\"headers\"][\"set-cookie\"][0].match(/[^;]*/).toString()}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"headerParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Referer",
|
||||
"value": "=http://localhost:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Cookie",
|
||||
"value": "={{$node[\"Get QB Cookie1\"].json[\"headers\"][\"set-cookie\"][0].match(/[^;]*/).toString()}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Check if Throttled1",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
1660,
|
||||
760
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"number": [
|
||||
{
|
||||
"value1": "={{$json[\"body\"]}}",
|
||||
"value2": 1,
|
||||
"operation": "equal"
|
||||
}
|
||||
],
|
||||
"string": []
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Do Nothing1",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
1900,
|
||||
860
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Throttle Connection",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
1060,
|
||||
360
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Resume Downloads",
|
||||
"type": "n8n-nodes-base.noOp",
|
||||
"position": [
|
||||
1060,
|
||||
760
|
||||
],
|
||||
"parameters": {},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Disable Throttle",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1900,
|
||||
660
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=http://{{$node[\"Global Variables\"].json[\"qbittorent\"][\"internalIP\"]}}:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}/api/v2/transfer/toggleSpeedLimitsMode",
|
||||
"options": {},
|
||||
"requestMethod": "POST",
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Cookie",
|
||||
"value": "={{$node[\"Get QB Cookie1\"].json[\"headers\"][\"set-cookie\"][0].match(/[^;]*/).toString()}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"headerParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Referer",
|
||||
"value": "=http://localhost:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Cookie",
|
||||
"value": "={{$node[\"Get QB Cookie1\"].json[\"headers\"][\"set-cookie\"][0].match(/[^;]*/).toString()}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Enable Throttle",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1900,
|
||||
440
|
||||
],
|
||||
"parameters": {
|
||||
"url": "=http://{{$node[\"Global Variables\"].json[\"qbittorent\"][\"internalIP\"]}}:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}/api/v2/transfer/toggleSpeedLimitsMode",
|
||||
"options": {},
|
||||
"requestMethod": "POST",
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Cookie",
|
||||
"value": "={{$node[\"Get QB Cookie\"].json[\"headers\"][\"set-cookie\"][0].match(/[^;]*/).toString()}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"headerParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "Referer",
|
||||
"value": "=http://localhost:{{$node[\"Global Variables\"].json[\"qbittorent\"][\"port\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "Cookie",
|
||||
"value": "={{$node[\"Get QB Cookie\"].json[\"headers\"][\"set-cookie\"][0].match(/[^;]*/).toString()}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": true,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Play": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Throttle Connection",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Stop": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Resume Downloads",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Pause": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Resume Downloads",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Resume": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Throttle Connection",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Switch": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Resume",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Play",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Pause",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Stop",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Webhook": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Global Variables",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get QB Cookie": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check Throttle State",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check if Local": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Don't Do Anything",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Switch",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Get QB Cookie1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check Throttle State2",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Global Variables": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check if Local",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Resume Downloads": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get QB Cookie1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check if Throttled": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Do Nothing",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Enable Throttle",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check if Throttled1": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Disable Throttle",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Do Nothing1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Throttle Connection": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Get QB Cookie",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check Throttle State": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check if Throttled",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Check Throttle State2": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Check if Throttled1",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
362
workflows/0084_HTTP_Cron_Automation_Webhook.json
Normal file
362
workflows/0084_HTTP_Cron_Automation_Webhook.json
Normal file
@@ -0,0 +1,362 @@
|
||||
{
|
||||
"id": "11",
|
||||
"name": "What To Eat",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
100,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"hour": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Search Criteria",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
300,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "RecipeCount",
|
||||
"value": 3
|
||||
},
|
||||
{
|
||||
"name": "IngredientCount",
|
||||
"value": 5
|
||||
},
|
||||
{
|
||||
"name": "CaloriesMin"
|
||||
},
|
||||
{
|
||||
"name": "CaloriesMax",
|
||||
"value": 1500
|
||||
},
|
||||
{
|
||||
"name": "TimeMin"
|
||||
},
|
||||
{
|
||||
"name": "TimeMax",
|
||||
"value": 30
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "Diet",
|
||||
"value": "balanced"
|
||||
},
|
||||
{
|
||||
"name": "Health",
|
||||
"value": "random"
|
||||
},
|
||||
{
|
||||
"name": "SearchItem",
|
||||
"value": "chicken"
|
||||
},
|
||||
{
|
||||
"name": "AppID",
|
||||
"value": "Enter Your Edamam AppID Here"
|
||||
},
|
||||
{
|
||||
"name": "AppKey",
|
||||
"value": "Enter Your Edamam AppKey Here"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set Query Values",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
500,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "items[0].json.calories = items[0].json.CaloriesMin + \"-\" + items[0].json.CaloriesMax;\nitems[0].json.time = items[0].json.TimeMin + \"-\" + items[0].json.TimeMax;\n\nif (items[0].json.Diet.toUpperCase() == \"RANDOM\") {\n arrDiet = [\"balanced\",\"high-fiber\",\"high-protein\",\"low-carb\",\"low-fat\",\"low-sodium\"];\n intRandomNumber = Math.floor(Math.random() * 6);\n items[0].json.Diet = arrDiet[intRandomNumber];\n}\n\nif (items[0].json.Health.toUpperCase() == \"RANDOM\") {\n arrHealth = [\"alcohol-free\",\"immuno-supportive\",\"celery-free\",\"crustacean-free\",\"dairy-free\",\"egg-free\",\"fish-free\",\"fodmap-free\",\"gluten-free\",\"keto-friendly\",\"kidney-friendly\",\"kosher\",\"low-potassium\",\"lupine-free\",\"mustard-free\",\"low-fat-abs\",\"no-oil-added\",\"low-sugar\",\"paleo\",\"peanut-free\",\"pecatarian\",\"pork-free\",\"red-meat-free\",\"sesame-free\",\"shellfish-free\",\"soy-free\",\"sugar-conscious\",\"tree-nut-free\",\"vegan\",\"vegetarian\",\"wheat-free\"];\n intRandomNumber = Math.floor(Math.random() * 31);\n items[0].json.Health = arrHealth[intRandomNumber];\n}\n\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set Recipe ID Values",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1080,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "items[0].json.from = Math.floor(Math.random() * items[0].json.RecipeCount) + 1;\nitems[0].json.to = items[0].json.from + items[0].json.ReturnCount;\n\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Retrieve Recipe Counts",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
700,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://api.edamam.com/search",
|
||||
"options": {},
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "q",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"SearchItem\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "app_id",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"AppID\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "app_key",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"AppKey\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "ingr",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"IngredientCount\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "diet",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"Diet\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "calories",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"calories\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "time",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"time\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "from",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"name": "to",
|
||||
"value": "2"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Retrieve Recipes",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
1260,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://api.edamam.com/search",
|
||||
"options": {},
|
||||
"queryParametersUi": {
|
||||
"parameter": [
|
||||
{
|
||||
"name": "q",
|
||||
"value": "={{$node[\"Search Criteria\"].json[\"SearchItem\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "app_id",
|
||||
"value": "={{$node[\"Search Criteria\"].json[\"AppID\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "app_key",
|
||||
"value": "={{$node[\"Search Criteria\"].json[\"AppKey\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "from",
|
||||
"value": "={{$node[\"Set Recipe ID Values\"].json[\"from\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "to",
|
||||
"value": "={{$node[\"Set Recipe ID Values\"].json[\"to\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "ingr",
|
||||
"value": "={{$node[\"Search Criteria\"].json[\"IngredientCount\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "diet",
|
||||
"value": "={{$node[\"Search Criteria\"].json[\"Diet\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "calories",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"calories\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "time",
|
||||
"value": "={{$node[\"Set Query Values\"].json[\"time\"]}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set Counts",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
880,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "RecipeCount",
|
||||
"value": "={{$node[\"Retrieve Recipe Counts\"].json[\"count\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "ReturnCount",
|
||||
"value": "={{$node[\"Search Criteria\"].json[\"RecipeCount\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Send Recipes",
|
||||
"type": "n8n-nodes-base.emailSend",
|
||||
"position": [
|
||||
1660,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"html": "={{$node[\"Create Email Body in HTML\"].json[\"emailBody\"]}}",
|
||||
"options": {},
|
||||
"subject": "={{$node[\"Set Query Values\"].json[\"RecipeCount\"]}} {{$node[\"Set Query Values\"].json[\"Diet\"]}}, {{$node[\"Set Query Values\"].json[\"Health\"]}} {{$node[\"Set Query Values\"].json[\"SearchItem\"]}} recipes under {{$node[\"Set Query Values\"].json[\"CaloriesMax\"]}} calories ready in under {{$node[\"Set Query Values\"].json[\"TimeMax\"]}} minutes",
|
||||
"toEmail": "Enter Your Email Address Here",
|
||||
"fromEmail": "Enter Your Email Address Here"
|
||||
},
|
||||
"credentials": {
|
||||
"smtp": "Gmail Creds"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Create Email Body in HTML",
|
||||
"type": "n8n-nodes-base.function",
|
||||
"position": [
|
||||
1460,
|
||||
400
|
||||
],
|
||||
"parameters": {
|
||||
"functionCode": "arrRecipes = items[0].json.hits;\nitems[0].json = {};\n\nstrEmailBody = \"Here are your recipes for today:<br><ul>\";\n\narrRecipes.forEach(createHTML);\n\nfunction createHTML(value, index, array) {\n strEmailBody = strEmailBody + \"<li><a href=\\\"\"+ value.recipe.shareAs + \"\\\">\" + value.recipe.label + \"</a></li>\";\n}\n\nstrEmailBody = strEmailBody + \"</ul>\";\n\nitems[0].json.emailBody = strEmailBody\n\nreturn items;"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": true,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Search Criteria",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set Counts": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set Recipe ID Values",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Search Criteria": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set Query Values",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Retrieve Recipes": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Create Email Body in HTML",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set Query Values": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Retrieve Recipe Counts",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set Recipe ID Values": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Retrieve Recipes",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Retrieve Recipe Counts": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set Counts",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Create Email Body in HTML": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Send Recipes",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
71
workflows/0085_Shopify_Twitter_Create_Triggered.json
Normal file
71
workflows/0085_Shopify_Twitter_Create_Triggered.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Twitter",
|
||||
"type": "n8n-nodes-base.twitter",
|
||||
"position": [
|
||||
720,
|
||||
-220
|
||||
],
|
||||
"parameters": {
|
||||
"text": "=Hey there, my design is now on a new product ✨\nVisit my {{$json[\"vendor\"]}} shop to get this cool{{$json[\"title\"]}} (and check out more {{$json[\"product_type\"]}}) 🛍️",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"twitterOAuth1Api": "twitter"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Telegram",
|
||||
"type": "n8n-nodes-base.telegram",
|
||||
"position": [
|
||||
720,
|
||||
-20
|
||||
],
|
||||
"parameters": {
|
||||
"text": "=Hey there, my design is now on a new product!\nVisit my {{$json[\"vendor\"]}} shop to get this cool{{$json[\"title\"]}} (and check out more {{$json[\"product_type\"]}})",
|
||||
"chatId": "123456",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"telegramApi": "telegram_habot"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "product created",
|
||||
"type": "n8n-nodes-base.shopifyTrigger",
|
||||
"position": [
|
||||
540,
|
||||
-110
|
||||
],
|
||||
"webhookId": "2a7e0e50-8f09-4a2b-bf54-a849a6ac4fe0",
|
||||
"parameters": {
|
||||
"topic": "products/create"
|
||||
},
|
||||
"credentials": {
|
||||
"shopifyApi": "shopify_nodeqa"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"product created": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Twitter",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Telegram",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
310
workflows/0086_Zohocrm_Trello_Create_Triggered.json
Normal file
310
workflows/0086_Zohocrm_Trello_Create_Triggered.json
Normal file
@@ -0,0 +1,310 @@
|
||||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Zoho",
|
||||
"type": "n8n-nodes-base.zohoCrm",
|
||||
"position": [
|
||||
950,
|
||||
610
|
||||
],
|
||||
"parameters": {
|
||||
"lastName": "={{$json[\"customer_lastname\"]}}",
|
||||
"resource": "contact",
|
||||
"operation": "upsert",
|
||||
"additionalFields": {
|
||||
"Email": "={{$json[\"customer_email\"]}}",
|
||||
"Phone": "={{$json[\"customer_phone\"]}}",
|
||||
"First_Name": "={{$json[\"customer_firstname\"]}}",
|
||||
"Mailing_Address": {
|
||||
"address_fields": {
|
||||
"Mailing_Zip": "={{$json[\"customer_zipcode\"]}}",
|
||||
"Mailing_City": "={{$json[\"customer_city\"]}}",
|
||||
"Mailing_State": "=",
|
||||
"Mailing_Street": "={{$json[\"customer_street\"]}}",
|
||||
"Mailing_Country": "={{$json[\"customer_country\"]}}"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"zohoOAuth2Api": "zoho_api"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Trello",
|
||||
"type": "n8n-nodes-base.trello",
|
||||
"position": [
|
||||
1160,
|
||||
800
|
||||
],
|
||||
"parameters": {
|
||||
"name": "=Shopify order {{$node[\"order created\"].json[\"order_number\"]}}",
|
||||
"listId": "list01",
|
||||
"additionalFields": {
|
||||
"urlSource": "={{$node[\"order created\"].json[\"order_status_url\"]}}"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"trelloApi": "trello_nodeqa"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Set fields",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [
|
||||
760,
|
||||
760
|
||||
],
|
||||
"parameters": {
|
||||
"values": {
|
||||
"number": [
|
||||
{
|
||||
"name": "customer_phone",
|
||||
"value": "={{$json[\"customer\"][\"default_address\"][\"phone\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "customer_zipcode",
|
||||
"value": "={{$json[\"shipping_address\"][\"zip\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "order_value",
|
||||
"value": "={{$json[\"current_total_price\"]}}"
|
||||
}
|
||||
],
|
||||
"string": [
|
||||
{
|
||||
"name": "customer_firstname",
|
||||
"value": "={{$json[\"customer\"][\"first_name\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "customer_lastname",
|
||||
"value": "={{$json[\"customer\"][\"last_name\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "customer_email",
|
||||
"value": "={{$json[\"customer\"][\"email\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "customer_country",
|
||||
"value": "={{$json[\"shipping_address\"][\"country\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "customer_street",
|
||||
"value": "={{$json[\"shipping_address\"][\"address1\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "customer_city",
|
||||
"value": "={{$json[\"shipping_address\"][\"city\"]}}"
|
||||
},
|
||||
{
|
||||
"name": "customer_province",
|
||||
"value": "={{$json[\"shipping_address\"][\"province\"]}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": {},
|
||||
"keepOnlySet": true
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "IF",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [
|
||||
960,
|
||||
1040
|
||||
],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"number": [
|
||||
{
|
||||
"value1": "={{$json[\"order_value\"]}}",
|
||||
"value2": 50,
|
||||
"operation": "larger"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Gmail - coupon",
|
||||
"type": "n8n-nodes-base.gmail",
|
||||
"position": [
|
||||
1140,
|
||||
950
|
||||
],
|
||||
"parameters": {
|
||||
"toList": [
|
||||
"={{$node[\"Set fields\"].json[\"customer_email\"]}}"
|
||||
],
|
||||
"message": "=Hi {{$json[\"customer_firstname\"]}},\n\nThank you for your order! Here's a 15% coupon code to use for your next order: COUPON15\n\nBest,\nShop Owner",
|
||||
"subject": "Your Shopify order",
|
||||
"resource": "message",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"gmailOAuth2": "gmail"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Gmail - thankyou",
|
||||
"type": "n8n-nodes-base.gmail",
|
||||
"position": [
|
||||
1140,
|
||||
1150
|
||||
],
|
||||
"parameters": {
|
||||
"toList": [
|
||||
"={{$node[\"Set fields\"].json[\"customer_email\"]}}"
|
||||
],
|
||||
"message": "=Hi {{$node[\"Set fields\"].json[\"customer_firstname\"]}},\nThank you for your order! We're getting it ready for shipping it to you.\n\nBest,\nShop Owner",
|
||||
"subject": "Your Shopify order",
|
||||
"resource": "message",
|
||||
"additionalFields": {}
|
||||
},
|
||||
"credentials": {
|
||||
"gmailOAuth2": "gmail"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Mailchimp",
|
||||
"type": "n8n-nodes-base.mailchimp",
|
||||
"position": [
|
||||
1340,
|
||||
950
|
||||
],
|
||||
"parameters": {
|
||||
"list": "qwertz",
|
||||
"tags": [
|
||||
"high-order"
|
||||
],
|
||||
"email": "={{$node[\"Set fields\"].json[\"customer_email\"]}}",
|
||||
"options": {},
|
||||
"resource": "memberTag"
|
||||
},
|
||||
"credentials": {
|
||||
"mailchimpApi": "mailchimp_API"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "order created",
|
||||
"type": "n8n-nodes-base.shopifyTrigger",
|
||||
"position": [
|
||||
560,
|
||||
760
|
||||
],
|
||||
"webhookId": "qwertz",
|
||||
"parameters": {
|
||||
"topic": "orders/create"
|
||||
},
|
||||
"credentials": {
|
||||
"shopifyApi": "shopify_nodeqa"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Harvest",
|
||||
"type": "n8n-nodes-base.harvest",
|
||||
"position": [
|
||||
980,
|
||||
800
|
||||
],
|
||||
"parameters": {
|
||||
"clientId": "shopify_client",
|
||||
"resource": "invoice",
|
||||
"accountId": "12345",
|
||||
"operation": "create",
|
||||
"additionalFields": {
|
||||
"currency": "={{$node[\"order created\"].json[\"currency\"]}}",
|
||||
"issue_date": "={{$node[\"order created\"].json[\"processed_at\"]}}",
|
||||
"payment_term": "net 15",
|
||||
"purchase_order": "={{$node[\"order created\"].json[\"order_number\"]}}"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"harvestApi": "harvest_token"
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"IF": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Gmail - coupon",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"node": "Gmail - thankyou",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Harvest": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Trello",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Set fields": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Harvest",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "IF",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"node": "Zoho",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"order created": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Set fields",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"Gmail - coupon": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Mailchimp",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user