Block 1 - Webhook
- Type / Role
- n8n-nodes-base.webhook - webhook
- Config choices
- Version 2.1
n8n workflow template: Strapi CMS v5 content API An importable n8n workflow that creates , updates , and lists entries on Strapi v5 through a single webhook. It talks to Strapi’s...
n8n-nodes-base.webhook, n8n-nodes-base.respondtowebhook, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.stopanderror, n8n-nodes-base.stickynote, n8n-nodes-base.switch
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Ivars Bariss.
Original n8n.io sourceAn importable n8n workflow that creates, updates, and lists entries on Strapi v5 through a single webhook. It talks to Strapi’s REST API with HTTP Request nodes and a Strapi Token API credential, so it stays compatible with v5 even though n8n’s built-in Strapi node targets older Strapi versions.
| File | Purpose |
|---|---|
strapi-v5-content-n8n-workflow.json |
Workflow export — use for Import from File / Import from URL in n8n or when submitting to the n8n template gallery |
action_type routes to create, update, or get_all.content_type_plural) per request; no workflow fork per collection.documentId on update and REST URLs shaped for the v5 API.get_all supports status, page_size, page_number, and populate=* in the workflow.strapi-v5-content-n8n-workflow.json (or import from this repo’s raw URL).strapi-v5-content). Change the path in the Webhook node if it clashes with another active workflow on the same instance.strapi_base_url.The template ships with no webhook authentication so you can test quickly. Before exposing the URL publicly, add authentication on the Webhook node (for example Header Auth with X-API-Key and a long random secret) and send that header on every call. The workflow intentionally does not hardcode your Strapi host: callers supply strapi_base_url in the body, so only trusted clients should be allowed.
All actions expect a JSON object (typically the webhook body). Common fields:
| Field | Required | Description |
|---|---|---|
action_type |
Yes | "create" | "update" | "get_all" |
strapi_base_url |
Yes | Strapi origin, no trailing slash (e.g. https://your-project.strapiapp.com) |
content_type_plural |
Yes | Plural API ID from Content-Type Builder (e.g. articles) |
get_allOptional: status (published / draft), page_size, page_number.
createRequired: data — object of field names and values matching your Strapi schema.
updateRequired: documentId (Strapi v5), and data with fields to patch.
Example shapes:
{
"action_type": "get_all",
"strapi_base_url": "https://your-strapi.example.com",
"content_type_plural": "articles",
"status": "published",
"page_size": 10,
"page_number": 1
}
{
"action_type": "create",
"strapi_base_url": "https://your-strapi.example.com",
"content_type_plural": "articles",
"data": { "title": "Hello", "slug": "hello" }
}
{
"action_type": "update",
"strapi_base_url": "https://your-strapi.example.com",
"content_type_plural": "articles",
"documentId": "<from get_all or Strapi admin>",
"data": { "title": "Updated title" }
}
For full parameter notes, pagination examples, and MCP / AI agent usage, see the sticky note inside the imported workflow.
This project is released under the MIT License (Copyright © 2026 IBSolutions.dev).
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 | Manage Strapi CMS v5 content types via webhook using HTTP requests |
|---|---|
| Complexity | intermediate |
| Nodes | 13 |
| Categories | Document Extraction |
| Author | Ivars Bariss |
| Published | 30 Mar 2026 |
Use the JSON export at /data/workflows/14471/14471.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.
n8n workflow template: Strapi CMS v5 content API An importable n8n workflow that creates , updates , and lists entries on Strapi v5 through a single webhook. It talks to Strapi’s...
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 Document Extraction use case.