Crons
GET /crons
Section titled “GET /crons”[ { "id": "__pbAutoBackup__", "expression": "0 0 * * *" }, { "id": "custom:cleanup-stale-sessions", "expression": "*/15 * * * *" } ]Lists every registered job, in registration order — both the
always-present built-ins (__pbDBOptimize__, __pbMFACleanup__,
__pbOTPCleanup__, __pbLogsCleanup__; __pbAutoBackup__ only once
settings.backups.cron is set) and every user-defined
_cron_jobs record, read-only through this
endpoint (create/edit/delete a custom job through the generic Records
API on _cron_jobs instead).
POST /crons/{id}
Section titled “POST /crons/{id}”Runs one job synchronously, right now, regardless of its schedule.
204 once it completes; 404 for an unknown job id.