Block 1 - Generate AWS Signature
- Type / Role
- n8n-nodes-base.code - code
- Config choices
- Version 2
Automatically retrieve AWS invoices and create corresponding bills in FreeAgent, marking them as paid. This workflow eliminates manual data entry for AWS billing. What It Does 1. Fetches invoices f...
n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-base.postgres, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.stickynote, n8n-nodes-base.scheduletrigger
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Pernille-AI.
Original n8n.io sourceAutomatically retrieve AWS invoices and create corresponding bills in FreeAgent, marking them as paid. This workflow eliminates manual data entry for AWS billing.
invoicing:ListInvoiceSummaries permissionThis template has placeholders that you need to replace:
YOUR_AWS_ACCESS_KEY_ID - Your AWS access keyYOUR_AWS_SECRET_ACCESS_KEY - Your AWS secret key YOUR_AWS_ACCOUNT_ID - Your 12-digit AWS account numberYOUR_CONTACT_ID - FreeAgent contact ID for AWSYOUR_CATEGORY_ID - FreeAgent category for cloud servicesYOUR_BANK_ACCOUNT_ID - FreeAgent bank account for paymentsThe workflow uses a PostgreSQL table to track processed invoices - To initially create the table you need to run :
CREATE TABLE aws_invoices_processed (
id SERIAL PRIMARY KEY,
aws_invoice_id VARCHAR(255) UNIQUE NOT NULL,
freeagent_invoice_url TEXT NOT NULL,
billing_period VARCHAR(7) NOT NULL,
amount DECIMAL(10, 2) NOT NULL,
currency VARCHAR(3) NOT NULL,
processed_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
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 | Sync AWS billing invoices with FreeAgent and PostgreSQL tracking |
|---|---|
| Complexity | advanced |
| Nodes | 18 |
| Categories | Invoice Processing |
| Author | Pernille-AI |
| Published | 06 Jan 2026 |
Use the JSON export at /data/workflows/12524/12524.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.
Automatically retrieve AWS invoices and create corresponding bills in FreeAgent, marking them as paid. This workflow eliminates manual data entry for AWS billing. What It Does 1. Fetches invoices f...
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 use case.