curl --request GET \
--url https://zeus-api.agentspro.cn/scheduled-task/jobs \
--header 'X-Internal-Secret: your-secret'
{
"jobs": [
{
"id": "task_123",
"name": "每日邮件摘要",
"next_run_time": "2025-06-16T09:00:00+08:00"
}
],
"total": 1
}
获取所有调度中的任务(调试用)
curl --request GET \
--url https://zeus-api.agentspro.cn/scheduled-task/jobs \
--header 'X-Internal-Secret: your-secret'
{
"jobs": [
{
"id": "task_123",
"name": "每日邮件摘要",
"next_run_time": "2025-06-16T09:00:00+08:00"
}
],
"total": 1
}
X-Internal-Secret 认证。curl --request GET \
--url https://zeus-api.agentspro.cn/scheduled-task/jobs \
--header 'X-Internal-Secret: your-secret'
{
"jobs": [
{
"id": "task_123",
"name": "每日邮件摘要",
"next_run_time": "2025-06-16T09:00:00+08:00"
}
],
"total": 1
}