Scheduler

Automated restarts, backups, commands and telemetry snapshots.

Task types
SERVER_START / STOP / RESTART
BACKUP_CREATE
CONSOLE_COMMAND
TELEMETRY_SNAPSHOT
Cron examples
0 5 * * *     daily 05:00
*/30 * * * *  every 30 min
0 */6 * * *   every 6 hours
API
GET  /scheduler/tasks
POST /scheduler/tasks
POST /scheduler/tasks/:id/run
GET  /scheduler/runs

Example payload

{
  "serverId": "server_id",
  "name": "Nightly restart",
  "type": "SERVER_RESTART",
  "cron": "0 5 * * *",
  "timezone": "Europe/Istanbul",
  "enabled": true
}