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 →
{
"name": "OpenClaw \u2014 Cron Job Management",
"nodes": [
{
"parameters": {},
"id": "trigger-1",
"name": "Manual Trigger",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"resource": "cron",
"action": "list",
"includeDisabled": true
},
"id": "openclaw-1",
"name": "List All Cron Jobs",
"type": "CUSTOM.openClaw",
"typeVersion": 1,
"position": [
450,
300
],
"credentials": {
"openClawApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "cron",
"action": "run",
"jobId": "={{ $json.id }}",
"runMode": "force"
},
"id": "openclaw-2",
"name": "Force Run Job",
"type": "CUSTOM.openClaw",
"typeVersion": 1,
"position": [
650,
300
],
"credentials": {
"openClawApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Manual Trigger": {
"main": [
[
{
"node": "List All Cron Jobs",
"type": "main",
"index": 0
}
]
]
},
"List All Cron Jobs": {
"main": [
[
{
"node": "Force Run Job",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
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.
openClawApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
OpenClaw — Cron Job Management. Uses CUSTOM. Event-driven trigger; 3 nodes.
Source: https://github.com/karmaniverous/n8n-nodes-openclaw/blob/main/examples/cron-management.json — 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.
Manual Schedule. Uses manualTrigger, n8n, scheduleTrigger, noOp. Event-driven trigger; 7 nodes.
Manual Schedule. Uses manualTrigger, signl4, openWeatherMap, scheduleTrigger. Event-driven trigger; 5 nodes.
Auto - Resume Disabled Workflows. Uses manualTrigger, n8n, scheduleTrigger. Event-driven trigger; 5 nodes.
n8n_mysql_purge_history_greater_than_10_days. Uses manualTrigger, mySql. Event-driven trigger; 3 nodes.
Blog Weekly Report. Uses executeCommand. Event-driven trigger; 2 nodes.