Workflow automation system with webhooks and cron scheduling
Trigger a workflow via webhook:
curl -X POST https://automation.pjly.io/webhook/example \
-H "X-Webhook-Secret: your-secret-key" \
-H "Content-Type: application/json" \
-d '{"action": "test"}'
Check job status:
curl https://automation.pjly.io/job/12345 \
-H "X-Webhook-Secret: your-secret-key"