Block 1 - easybits: Extract Invoice Number
- Type / Role
- @easybits/n8n-nodes-extractor.easybitsExtractor - easybitsExtractor
- Config choices
- Version 2
What This Workflow Does Monitors incoming invoice emails and catches extraction failures before they slip through. When easybits Extractor can't extract the invoice number from an attachment, the w...
@easybits/n8n-nodes-extractor.easybitsextractor, n8n-nodes-base.if, n8n-nodes-base.slack, n8n-nodes-base.googledrive, n8n-nodes-base.gmailtrigger, n8n-nodes-base.merge, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Felix.
Original n8n.io sourceMonitors incoming invoice emails and catches extraction failures before they slip through. When easybits Extractor can't extract the invoice number from an attachment, the workflow sends a Slack alert to finance so nothing gets lost. Successfully extracted invoices are archived to Google Drive – only clean, validated files land there.
invoice_number was successfully extractedExtractor returns null when it can't confidently identify a data point – which is the right behavior (better than hallucinating a value). But without a safety net, those nulls can propagate into your Sheets, your approval flow, or your accounting system. This workflow makes silent failures visible.
invoice_number field (this is the field the validation step checks)> 💡 Tip: You can validate against any field that's critical for your use case – just swap invoice_number in the IF node for whatever field you define as mandatory (e.g. total_amount, vendor_name).
@easybits/n8n-nodes-extractorThe IF node currently checks {{ $json.data.invoice_number }} with the is empty operator. If your pipeline uses a different critical field, update this expression to point at that field.
This error handling branch can sit in front of any workflow in the easybits series:
The pattern is always the same: Extractor → IF (is empty) → error branch alongside your main path.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Catch failed invoice extractions with easybits, Slack, and Google Drive |
|---|---|
| Complexity | intermediate |
| Nodes | 13 |
| Categories | Invoice Processing, AI Summarization |
| Author | Felix |
| Published | 16 Apr 2026 |
Use the JSON export at /data/workflows/15098/15098.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
What This Workflow Does Monitors incoming invoice emails and catches extraction failures before they slip through. When easybits Extractor can't extract the invoice number from an attachment, the w...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Invoice Processing, AI Summarization use case.