Back to Catalog

Send weekly hiring manager reports with BreezyHR data to email

WeblineIndiaWeblineIndia
12 views
2/3/2026
Official Page

Weekly hiring‑manager snapshot from Breezy HR to email (pipeline, next‑week interviews, stuck)

This workflow sends each hiring manager a single weekly email with an overview of their open roles: pipeline totals, a per‑position summary, interviews scheduled next week and stuck candidates (no movement ≥ 7 days). It queries Breezy HR using your API token, detects the HM via each position’s team (falling back to a simple map when unavailable), aggregates results and emails one digest per HM. The job runs Mondays at 07:30 Asia/Kolkata, includes a DRY_RUN preview and rate‑limits sends.

Who’s it for

  • Hiring managers who want a once‑a‑week snapshot instead of many separate updates.
  • Talent/recruiting teams using Breezy HR who need pipeline hygiene and next‑week readiness at a glance.
  • Ops partners who prefer a standardized email with HTML tables and a text fallback.

How it works

  1. Cron (Mon 07:30 IST) triggers weekly.
  2. Breezy → Positions: Fetch open positions (configurable).
  3. Find HM: For each position, read the position team and look for a member with a “hiring manager” role; if none, use the fallback map.
  4. Candidates per position: Fetch candidates, compute stage counts and mark stuck where last activity ≥ STUCK_AFTER_DAYS.
  5. Events per position: Fetch events and keep those that look like interviews scheduled next calendar week.
  6. Aggregate per position → Group by hiring manager → Build one HTML digest per HM.
  7. DRY_RUN? If true, output a preview only; otherwise send emails with a small delay between each.

How to set up

  1. Credentials in n8n
    • HTTP Header Auth for Breezy HR: set Authorization: Bearer <YOUR_TOKEN> in a credential (don’t hardcode in the node).
    • SMTP (Gmail) to send digests.
  2. Open “Set: Config” (single place to edit)
    • BREEZY_API_BASE = https://api.breezy.hr/v3
    • COMPANY_ID = your Breezy company ID
    • TIMEZONE = Asia/Kolkata
    • INCLUDE_ONLY_OPEN = true (use STATE_FILTER = open)
    • USE_BREEZY_HM_DETECTION = true
    • HM_FALLBACK_MAP_JSON = e.g., { "Default": "hm@example.com", "Java TL": "javatl@company.com" }
    • STUCK_AFTER_DAYS = 7
    • INTERVIEW_EVENT_KEYWORDS_CSV = interview
    • SMTP_FROM = sender address
    • SUBJECT_TEMPLATE = Weekly HM snapshot {{range}} — {{positions_count}} roles, {{candidates_count}} candidates
    • INTRO_TEMPLATE / OUTRO_TEMPLATE
    • DRY_RUN = false (set true to preview)
    • RATE_LIMIT_EMAIL_SECONDS = 5
  3. Activate the workflow.

Requirements

  • Breezy HR API token with access to positions, teams, candidates and events.
  • SMTP (Gmail) account to send emails.
  • n8n (cloud or self‑hosted) with HTTP Header Auth and SMTP credentials.

How to customize

  • Schedule: Change Cron to your preferred day/time.
  • Scope: Set INCLUDE_ONLY_OPEN=false to include other position states.
  • Interview detection: Edit INTERVIEW_EVENT_KEYWORDS_CSV to match your account’s event labels.
  • Stuck threshold: Adjust STUCK_AFTER_DAYS (e.g., 10 or 14).
  • Templates: Update SUBJECT_TEMPLATE, INTRO_TEMPLATE, OUTRO_TEMPLATE.
  • Fallback mapping: Expand HM_FALLBACK_MAP_JSON for positions lacking team data.

Add‑ons

  • Slack delivery: Post a weekly summary to a channel or DM the HM alongside the email.
  • CSV attachments: Attach per‑HM CSV of positions/candidates for offline work.
  • Manager CC: CC a recruiting lead or HRBP for visibility on key roles.
  • Writeback: Log weekly metrics to Google Sheets for dashboards.
  • Custom windows: Use a different future window (e.g., interviews in the next 2 weeks).

Use Case Examples

  • Busy HMs who want one email showing where to focus for the coming week.
  • Recruiting Ops keeping tabs on pipeline health and stalled candidates.
  • Leadership reviews where weekly snapshots feed into Monday stand‑ups.

Common troubleshooting

| Issue | Possible Cause | Solution | |---|---|---| | No emails sent | DRY_RUN=true | Set DRY_RUN=false to send. | | Missing HM recipients | Team endpoint returned no “hiring manager” and fallback map not configured | Add position→email in HM_FALLBACK_MAP_JSON (or set a better default). | | Interviews list is empty | Different event label in your Breezy account | Add your labels to INTERVIEW_EVENT_KEYWORDS_CSV (comma‑separated). | | Stuck candidates not flagged | Threshold too high or activity timestamps missing | Lower STUCK_AFTER_DAYS or verify candidate activity data. | | API errors | Bad token or insufficient scopes | Recreate the Breezy credential with a valid Bearer token. | | Emails fail to send | SMTP auth/quota issues | Check SMTP credentials/from‑address permissions and provider limits. |

Need Help?

If you’d like help tuning the interview filters, changing the grouping logic, or adding Slack/CSV writebacks, feel free to reach out our n8n experts at WeblineIndia. We'll be happy to help you tailor this to your stack.

n8n Workflow: Send Weekly Hiring Manager Reports with BreezyHR Data to Email

This n8n workflow automates the process of generating and sending weekly hiring manager reports. It's designed to fetch data (presumably from an API like BreezyHR, though the specific API is not explicitly defined in the provided JSON) and then distribute it via email.

What it does

This workflow performs the following steps:

  1. Schedules a Trigger: The workflow is initiated on a recurring schedule, likely weekly, by the Cron node.
  2. Performs an HTTP Request: It makes an HTTP request to an external API (e.g., BreezyHR) to retrieve data. This step is crucial for fetching the raw report data.
  3. Processes Data with a Function: The Function node is used to execute custom JavaScript code, which likely transforms or filters the data received from the HTTP request into a suitable format for the report.
  4. Conditionally Processes Data: An If node introduces conditional logic, allowing the workflow to branch based on certain criteria of the processed data. This could be used to decide if a report needs to be sent, or to format it differently.
  5. Edits Fields: The Edit Fields (Set) node is used to manipulate or set specific fields within the data, preparing it for the final email content.
  6. Sends Email: Finally, the Send Email node dispatches the generated report via email to the configured recipients.

Prerequisites/Requirements

To use this workflow, you will need:

  • n8n Instance: A running instance of n8n.
  • API Access: Access to the API from which you intend to pull data (e.g., BreezyHR API credentials, although not explicitly defined in the JSON, it's implied by the directory name and the HTTP Request node).
  • SMTP Credentials: Configured SMTP credentials within n8n to send emails.

Setup/Usage

  1. Import the Workflow: Import the provided JSON into your n8n instance.
  2. Configure Cron Trigger: Adjust the Cron node to your desired weekly schedule for report generation.
  3. Configure HTTP Request:
    • Set the correct API endpoint in the HTTP Request node to fetch your hiring manager data.
    • Configure any necessary authentication (e.g., API keys, tokens) for your chosen API.
  4. Customize Function Node: Modify the JavaScript code within the Function node to correctly parse and transform the data from your API into the desired report format.
  5. Adjust If Node (Optional): If you have specific conditions for sending reports, configure the If node accordingly.
  6. Configure Edit Fields: Ensure the Edit Fields (Set) node correctly prepares the data for the email content.
  7. Configure Send Email:
    • Specify the recipient email addresses (e.g., hiring managers).
    • Customize the email subject and body to include the report data generated by the previous steps.
    • Ensure your SMTP credentials are set up in n8n.
  8. Activate the Workflow: Once configured, activate the workflow to start sending automated weekly reports.

Related Templates

Generate song lyrics and music from text prompts using OpenAI and Fal.ai Minimax

Spark your creativity instantly in any chat—turn a simple prompt like "heartbreak ballad" into original, full-length lyrics and a professional AI-generated music track, all without leaving your conversation. 📋 What This Template Does This chat-triggered workflow harnesses AI to generate detailed, genre-matched song lyrics (at least 600 characters) from user messages, then queues them for music synthesis via Fal.ai's minimax-music model. It polls asynchronously until the track is ready, delivering lyrics and audio URL back in chat. Crafts original, structured lyrics with verses, choruses, and bridges using OpenAI Submits to Fal.ai for melody, instrumentation, and vocals aligned to the style Handles long-running generations with smart looping and status checks Returns complete song package (lyrics + audio link) for seamless sharing 🔧 Prerequisites n8n account (self-hosted or cloud with chat integration enabled) OpenAI account with API access for GPT models Fal.ai account for AI music generation 🔑 Required Credentials OpenAI API Setup Go to platform.openai.com → API keys (sidebar) Click "Create new secret key" → Name it (e.g., "n8n Songwriter") Copy the key and add to n8n as "OpenAI API" credential type Test by sending a simple chat completion request Fal.ai HTTP Header Auth Setup Sign up at fal.ai → Dashboard → API Keys Generate a new API key → Copy it In n8n, create "HTTP Header Auth" credential: Name="Fal.ai", Header Name="Authorization", Header Value="Key [Your API Key]" Test with a simple GET to their queue endpoint (e.g., /status) ⚙️ Configuration Steps Import the workflow JSON into your n8n instance Assign OpenAI API credentials to the "OpenAI Chat Model" node Assign Fal.ai HTTP Header Auth to the "Generate Music Track", "Check Generation Status", and "Fetch Final Result" nodes Activate the workflow—chat trigger will appear in your n8n chat interface Test by messaging: "Create an upbeat pop song about road trips" 🎯 Use Cases Content Creators: YouTubers generating custom jingles for videos on the fly, streamlining production from idea to audio export Educators: Music teachers using chat prompts to create era-specific folk tunes for classroom discussions, fostering interactive learning Gift Personalization: Friends crafting anniversary R&B tracks from shared memories via quick chats, delivering emotional audio surprises Artist Brainstorming: Songwriters prototyping hip-hop beats in real-time during sessions, accelerating collaboration and iteration ⚠️ Troubleshooting Invalid JSON from AI Agent: Ensure the system prompt stresses valid JSON; test the agent standalone with a sample query Music Generation Fails (401/403): Verify Fal.ai API key has minimax-music access; check usage quotas in dashboard Status Polling Loops Indefinitely: Bump wait time to 45-60s for complex tracks; inspect fal.ai queue logs for bottlenecks Lyrics Under 600 Characters: Tweak agent prompt to enforce fuller structures like [V1][C][V2][B][C]; verify output length in executions

Daniel NkenchoBy Daniel Nkencho
601

Synchronizing WooCommerce inventory and creating products with Google Gemini AI and BrowserAct

Synchronize WooCommerce Inventory & Create Products with Gemini AI & BrowserAct This sophisticated n8n template automates WooCommerce inventory management by scraping supplier data, updating existing products, and intelligently creating new ones with AI-formatted descriptions. This workflow is essential for e-commerce operators, dropshippers, and inventory managers who need to ensure their product pricing and stock levels are synchronized with multiple third-party suppliers, minimizing overselling and maximizing profit. --- Self-Hosted Only This Workflow uses a community contribution and is designed and tested for self-hosted n8n instances only. --- How it works The workflow is typically run by a Schedule Trigger (though a Manual Trigger is also shown) to check stock automatically. It reads a list of suppliers and their inventory page URLs from a central Google Sheet. The workflow loops through each supplier: A BrowserAct node scrapes the current stock and price data from the supplier's inventory page. A Code node parses this bulk data into individual product items. It then loops through each individual product found. The workflow checks WooCommerce to see if the product already exists based on its name. If the product exists: It proceeds to update the existing product's price and stock quantity. If the product DOES NOT exist: An If node checks if the missing product's category matches a predefined type (optional filtering). If it passes the filter, a second BrowserAct workflow scrapes detailed product attributes from a dedicated product page (e.g., DigiKey). An AI Agent (Gemini) transforms these attributes into a specific, styled HTML table for the product description. Finally, the product is created in WooCommerce with all scraped details and the AI-generated description. Error Handling: Multiple Slack nodes are configured to alert your team immediately if any scraping task fails or if the product update/creation process encounters an issue. Note: This workflow does not support image uploads for new products. To enable this functionality, you must modify both the n8n and BrowserAct workflows. --- Requirements BrowserAct API account for web scraping BrowserAct n8n Community Node -> (n8n Nodes BrowserAct) BrowserAct templates named “WooCommerce Inventory & Stock Synchronization” and “WooCommerce Product Data Reconciliation” Google Sheets credentials for the supplier list WooCommerce credentials for product management Google Gemini account for the AI Agent Slack credentials for error alerts --- Need Help? How to Find Your BrowseAct API Key & Workflow ID How to Connect n8n to Browseract How to Use & Customize BrowserAct Templates How to Use the BrowserAct N8N Community Node --- Workflow Guidance and Showcase STOP Overselling! Auto-Sync WooCommerce Inventory from ANY Supplier

Madame AI Team | KaiBy Madame AI Team | Kai
600

Tax deadline management & compliance alerts with GPT-4, Google Sheets & Slack

AI-Driven Tax Compliance & Deadline Management System Description Automate tax deadline monitoring with AI-powered insights. This workflow checks your tax calendar daily at 8 AM, uses GPT-4 to analyze upcoming deadlines across multiple jurisdictions, detects overdue and critical items, and sends intelligent alerts via email and Slack only when immediate action is required. Perfect for finance teams and accounting firms who need proactive compliance management without manual tracking. 🏛️🤖📊 Good to Know AI-Powered: GPT-4 provides risk assessment and strategic recommendations Multi-Jurisdiction: Handles Federal, State, and Local tax requirements automatically Smart Alerts: Only notifies executives when deadlines are overdue or critical (≤3 days) Priority Classification: Categorizes deadlines as Overdue, Critical, High, or Medium priority Dual Notifications: Critical alerts to leadership + daily summaries to team channel Complete Audit Trail: Logs all checks and deadlines to Google Sheets for compliance records How It Works Daily Trigger - Runs at 8:00 AM every morning Fetch Data - Pulls tax calendar and company configuration from Google Sheets Analyze Deadlines - Calculates days remaining, filters by jurisdiction/entity type, categorizes by priority AI Analysis - GPT-4 provides strategic insights and risk assessment on upcoming deadlines Smart Routing - Only sends alerts if overdue or critical deadlines exist Critical Alerts - HTML email to executives + Slack alert for urgent items Team Updates - Slack summary to finance channel with all upcoming deadlines Logging - Records compliance check results to Google Sheets for audit trail Requirements Google Sheets Structure Sheet 1: TaxCalendar DeadlineID | DeadlineName | DeadlineDate | Jurisdiction | Category | AssignedTo | IsActive FED-Q1 | Form 1120 Q1 | 2025-04-15 | Federal | Income | John Doe | TRUE Sheet 2: CompanyConfig (single row) Jurisdictions | EntityType | FiscalYearEnd Federal, California | Corporation | 12-31 Sheet 3: ComplianceLog (auto-populated) Date | AlertLevel | TotalUpcoming | CriticalCount | OverdueCount 2025-01-15 | HIGH | 12 | 3 | 1 Credentials Needed Google Sheets - Service Account OAuth2 OpenAI - API Key (GPT-4 access required) SMTP - Email account for sending alerts Slack - Bot Token with chat:write permission Setup Steps Import workflow JSON into n8n Add all 4 credentials Replace these placeholders: YOURTAXCALENDAR_ID - Tax calendar sheet ID YOURCONFIGID - Company config sheet ID YOURLOGID - Compliance log sheet ID C12345678 - Slack channel ID tax@company.com - Sender email cfo@company.com - Recipient email Share all sheets with Google service account email Invite Slack bot to channels Test workflow manually Activate the trigger Customizing This Workflow Change Alert Thresholds: Edit "Analyze Deadlines" node: Critical: Change <= 3 to <= 5 for 5-day warning High: Change <= 7 to <= 14 for 2-week notice Medium: Change <= 30 to <= 60 for 2-month lookout Adjust Schedule: Edit "Daily Tax Check" trigger: Change hour/minute for different run time Add multiple trigger times for tax season (8 AM, 2 PM, 6 PM) Add More Recipients: Edit "Send Email" node: To: cfo@company.com, director@company.com CC: accounting@company.com BCC: archive@company.com Customize Email Design: Edit "Format Email" node to change colors, add logo, or modify layout Add SMS Alerts: Insert Twilio node after "Is Critical" for emergency notifications Integrate Task Management: Add HTTP Request node to create tasks in Asana/Jira for critical deadlines Troubleshooting | Issue | Solution | |-------|----------| | No deadlines found | Check date format (YYYY-MM-DD) and IsActive = TRUE | | AI analysis failed | Verify OpenAI API key and account credits | | Email not sending | Test SMTP credentials and check if critical condition met | | Slack not posting | Invite bot to channel and verify channel ID format | | Permission denied | Share Google Sheets with service account email | 📞 Professional Services Need help with implementation or customization? Our team offers: 🎯 Custom workflow development 🏢 Enterprise deployment support 🎓 Team training sessions 🔧 Ongoing maintenance 📊 Custom reporting & dashboards 🔗 Additional API integrations Discover more workflows – Get in touch with us

Oneclick AI SquadBy Oneclick AI Squad
93