SuperSeller Blog
n8n knowledge base workflow
Use n8n triggers, field mapping, and the HTTP Request node to keep SuperSeller knowledge base content updated without custom code.
Use this workflow when support content lives outside SuperSeller: Google Sheets, forms, Notion, CMS pages, or another internal system.
Workflow outline
- Trigger: Manual, Schedule, Google Sheets, or Webhook.
- Read source content.
- Filter for approved or published items.
- Map fields to id, title, document, and url.
- Send the item to
POST /api/v1/knowledgewith the HTTP Request node.
HTTP Request body
{
"id": "{{$json.id}}",
"title": "{{$json.title}}",
"document": "{{$json.document}}",
"url": "{{$json.url}}"
}