curl --request POST \
--url https://zeus-api.agentspro.cn/scheduled-task/sync \
--header 'X-Internal-Secret: your-secret' \
--header 'Content-Type: application/json' \
--data '{
"action": "add",
"task_id": "task_123",
"task": {
"id": "task_123",
"user_id": "user_456",
"title": "Daily Email Digest",
"prompt": "Check inbox and generate a summary of today'\''s emails",
"repeat_type": "daily",
"scheduled_time": "09:00",
"timezone": "Asia/Shanghai"
}
}'