Describe the issue/error/question
Hi n8n community!
I am thinking I’m doing something wrong… I installed n8n and created a clockify trigger. My goal is to pass all clockify entries to my invoiceninja system. The flow is working perfectly (except for all entries being sent, but that’s another issue) when I click execute workflow. However when I set the polling interval to 1 minute, nothing happens. Setting it to different polling intervals also doesn’t change anything. I also tested the cron trigger, which is executing just fine.
Is this something I do wrong? Or did I not configure n8n correctly?
Thanks in advance!
Please share the workflow
{
"nodes": [
{
"parameters": {
"pollTimes": {
"item": [
{
"mode": "everyMinute"
}
]
},
"workspaceId": ""
},
"name": "Clockify Trigger",
"type": "n8n-nodes-base.clockifyTrigger",
"typeVersion": 1,
"position": [
100,
300
],
"credentials": {
"clockifyApi": {
"id": "",
"name": ""
}
},
"continueOnFail": true
},
{
"parameters": {
"resource": "task",
"additionalFields": {
"client": 23,
"description": "={{$json[\"project\"][\"name\"]}}: {{$json[\"description\"]}} ({{$json[\"timeInterval\"][\"start\"]}} - {{$json[\"timeInterval\"][\"end\"]}})",
"project":
},
"timeLogsUi": {
"timeLogsValues": [
{
"startDate": "={{$json[\"timeInterval\"][\"start\"]}}",
"endDate": "={{$json[\"timeInterval\"][\"end\"]}}"
}
]
}
},
"name": "Invoice Ninja",
"type": "n8n-nodes-base.invoiceNinja",
"typeVersion": 1,
"position": [
660,
300
],
"credentials": {
"invoiceNinjaApi": {
"id": "",
"name": ""
}
}
}
],
"connections": {
"Clockify Trigger": {
"main": [
[
{
"node": "Invoice Ninja",
"type": "main",
"index": 0
}
]
]
}
}
}
Share the output returned by the last node
Information on your n8n setup
- n8n version: 0.155.2
- Database you’re using (default: SQLite): Postgresql
- Running n8n with the execution process [own(default), main]: own
- Running n8n via [Docker, npm, n8n.cloud, desktop app]: docker(caprover)


