← Back to Projects
🟣 csharp-api 2024

Task Scheduler API

A task scheduler API in ASP.NET Core 8. Full CRUD for tasks, Swagger UI.

Preview

api-panel — rest
Endpoints
POST/api/tasks
Request
{
  "name": "Backup DB",
  "cron": "0 2 * * *",
  "command": "backup.sh"
}
Response200 OK
{
  "task_id": "t-001",
  "next_run": "2024-01-16T02: 00: 00Z",
  "status": "scheduled"
}

Tech Stack

  • C#
  • ASP.NET Core
  • Swashbuckle

Description

A task scheduler API in ASP.NET Core 8. Full CRUD for tasks, Swagger UI.