Manage cron schedules
curl -X GET http://localhost:8002/api/v1/schedules \ -H "X-API-Key: your-api-key"
{ "schedules": [ { "workflow": "daily-report", "schedule": "0 9 * * *", "timezone": "America/New_York", "enabled": true, "nextRun": "2025-11-01T09:00:00Z" } ] }
curl -X PATCH http://localhost:8002/api/v1/schedules/daily-report \ -H "Content-Type: application/json" \ -H "X-API-Key: your-api-key" \ -d '{ "schedule": "0 8 * * *", "timezone": "America/Los_Angeles" }'
curl -X POST http://localhost:8002/api/v1/schedules/daily-report/pause \ -H "X-API-Key: your-api-key"
curl -X POST http://localhost:8002/api/v1/schedules/daily-report/resume \ -H "X-API-Key: your-api-key"
Was this page helpful?