The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"nodes": [
{
"name": "Medium",
"type": "n8n-nodes-base.medium",
"position": [
650,
450
],
"parameters": {
"title": "={{$json[\"body\"][\"entry\"][\"Title\"]}}",
"content": "={{$json[\"body\"][\"entry\"][\"PostContent\"]}}",
"contentFormat": "markdown",
"additionalFields": {}
},
"credentials": {
"mediumApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"position": [
450,
300
],
"parameters": {
"path": "",
"options": {},
"httpMethod": "POST",
"authentication": "headerAuth"
},
"credentials": {
"httpHeaderAuth": "<your credential>"
},
"typeVersion": 1
},
{
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"position": [
650,
200
],
"parameters": {
"url": "https://dev.to/api/articles",
"options": {},
"requestMethod": "POST",
"authentication": "headerAuth",
"jsonParameters": true,
"bodyParametersJson": "={\n\t\"article\": {\n\t\t\"title\": \"{{$json[\"body\"][\"entry\"][\"Title\"]}}\",\n\t\t\"published\": true,\n\t\t\"body_markdown\": \"{{$json[\"body\"][\"entry\"][\"PostContent\"]}}\",\n\t\t\"tags\":[\"{{$json[\"body\"][\"entry\"][\"Tag\"]}}\"]\n\t}\n}",
"headerParametersJson": "{\"Content-Type\": \"application/json\"}"
},
"credentials": {
"httpHeaderAuth": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
},
{
"node": "Medium",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
httpHeaderAuthmediumApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Http Medium. Uses medium, httpRequest. Webhook trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Syncro Status Update Clockify. Uses clockify, httpRequest. Webhook trigger; 6 nodes.
Http Respondtowebhook. Uses respondToWebhook, httpRequest, stickyNote. Webhook trigger; 6 nodes.
React to PDFMonkey Callback. Uses stickyNote, httpRequest. Webhook trigger; 4 nodes.
Test Process V1. Uses start, httpRequest. Webhook trigger; 4 nodes.
PUQ Docker NextCloud deploy. Uses respondToWebhook, stickyNote, httpRequest, ssh. Webhook trigger; 44 nodes.