diff --git a/Jellyfin.Api/Controllers/ScheduledTasksController.cs b/Jellyfin.Api/Controllers/ScheduledTasksController.cs
index da7cfbc3a7..ad70bf83b2 100644
--- a/Jellyfin.Api/Controllers/ScheduledTasksController.cs
+++ b/Jellyfin.Api/Controllers/ScheduledTasksController.cs
@@ -33,7 +33,8 @@ namespace Jellyfin.Api.Controllers
///
/// Optional filter tasks that are hidden, or not.
/// Optional filter tasks that are enabled, or not.
- /// Task list.
+ /// Scheduled tasks retrieved.
+ /// The list of scheduled tasks.
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK)]
public IEnumerable GetTasks(
@@ -65,7 +66,9 @@ namespace Jellyfin.Api.Controllers
/// Get task by id.
///
/// Task Id.
- /// Task Info.
+ /// Task retrieved.
+ /// Task not found.
+ /// An containing the task on success, or a if the task could not be found.
[HttpGet("{TaskID}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
@@ -87,7 +90,9 @@ namespace Jellyfin.Api.Controllers
/// Start specified task.
///
/// Task Id.
- /// Status.
+ /// Task started.
+ /// Task not found.
+ /// An on success, or a if the file could not be found.
[HttpPost("Running/{TaskID}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
@@ -109,7 +114,9 @@ namespace Jellyfin.Api.Controllers
/// Stop specified task.
///
/// Task Id.
- /// Status.
+ /// Task stopped.
+ /// Task not found.
+ /// An on success, or a if the file could not be found.
[HttpDelete("Running/{TaskID}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
@@ -132,7 +139,9 @@ namespace Jellyfin.Api.Controllers
///
/// Task Id.
/// Triggers.
- /// Status.
+ /// Task triggers updated.
+ /// Task not found.
+ /// An on success, or a if the file could not be found.
[HttpPost("{TaskID}/Triggers")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]