Block 1 - Step B – Upload binary to S3
- Type / Role
- n8n-nodes-base.httpRequest - httpRequest
- Config choices
- Version 4.4
Uploading an image to Webflow's Asset Manager through the API is surprisingly complex. It requires computing an MD5 hash, announcing the file to Webflow, then uploading the binary to Amazon S3 with...
n8n-nodes-base.httprequest, n8n-nodes-base.crypto, n8n-nodes-base.executeworkflowtrigger, n8n-nodes-base.set, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Oliver Engel.
Original n8n.io sourceUploading an image to Webflow's Asset Manager through the API is surprisingly complex. It requires computing an MD5 hash, announcing the file to Webflow, then uploading the binary to Amazon S3 with specific headers. This template wraps that entire process into a clean, reusable sub-workflow you can call from any main workflow.
imageData (binary), fileName, and wfSiteId./v2/sites/:site_id/assets) announces the file and returns an S3 upload URL along with required upload details (credentials, policy, signature).originalFileName, fileId, and assetUrl to the calling workflow.assets:write scope.imageData: The binary image datafileName: File name including extension (max 100 characters)wfSiteId: Your Webflow site IDoriginalFileName, fileId, and assetUrl, which you can then use in subsequent steps (e.g., updating a CMS item, sending a notification, etc.).assets:write scopeparentFolder parameter in the first request. If you want to upload into a specific folder in the Asset Manager, add the folder ID to the body of the first HTTP node.assetUrl and the relevant collection/item IDs.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 | Upload images to Webflow via API as a reusable sub-workflow |
|---|---|
| Complexity | intermediate |
| Nodes | 9 |
| Categories | File Management |
| Author | Oliver Engel |
| Published | 07 Apr 2026 |
Use the JSON export at /data/workflows/14863/14863.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.
Uploading an image to Webflow's Asset Manager through the API is surprisingly complex. It requires computing an MD5 hash, announcing the file to Webflow, then uploading the binary to Amazon S3 with...
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 File Management use case.