Modify Publish Time for Scheduled Task. Only tasks that are waiting for execution can modify the publish time.
POST/api/v1/automation/updateTaskTime| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Task ID, can be obtained from the scheduled task list |
| issue_at | int | Yes | Publish time, must be a date-time string in the format Y-m-d H:i |
{
"id": "xxx",
"issue_at": "2026-01-01 00:00"
}
{
"code": 200,
"data": {
"message": "success"
},
"message": "success"
}