The scheduler admin endpoints provide system-wide controls intended for maintenance windows and disaster recovery. Every endpoint underDocumentation Index
Fetch the complete documentation index at: https://alphabet-06152314.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
/api/v1/scheduler/admin requires the AdminOnly authorization policy — ordinary authenticated users cannot access them.
Pause all jobs
Response
200 OK — all active jobs were paused successfully. 400 Bad Request — returnsProblemDetails if the operation could not be completed.
Resume all jobs
Response
200 OK — all jobs were resumed and their schedules re-registered. 400 Bad Request — returnsProblemDetails if the operation could not be completed.
Clear old execution logs
Request body
Age threshold in days. Execution records with a completion timestamp older than this value are deleted.
Response
200 OK — returns the count of deleted execution records as a plain integer. 400 Bad Request — returnsProblemDetails if olderThanDays is missing or invalid.
Deleted execution records cannot be recovered. Consider exporting job configurations before clearing logs if you need an audit trail.
Example
Export job configurations
scheduler-jobs-export.json). Use the exported file for backup, environment migration, or version-controlled job configuration.
Response
200 OK — returns a file download withContent-Type: application/json and filename scheduler-jobs-export.json.
Example
Import job configurations
Request body
The raw JSON string exported from
GET /api/v1/scheduler/admin/export. Pass the file contents as a JSON-encoded string.Response
200 OK — returns the count of imported jobs as a plain integer. 400 Bad Request — returnsProblemDetails if the payload is missing, malformed, or any job definition fails validation.
Example
Hangfire dashboard
For visual monitoring of queued, scheduled, and failed jobs, the Hangfire dashboard is available at/hangfire. Access to this dashboard is restricted to users with the AdminOnly policy.