diff --git a/Jellyfin.Api/Controllers/EnvironmentController.cs b/Jellyfin.Api/Controllers/EnvironmentController.cs
index 139c1af0831..78c206ba195 100644
--- a/Jellyfin.Api/Controllers/EnvironmentController.cs
+++ b/Jellyfin.Api/Controllers/EnvironmentController.cs
@@ -40,7 +40,8 @@ namespace Jellyfin.Api.Controllers
/// The path.
/// An optional filter to include or exclude files from the results. true/false.
/// An optional filter to include or exclude folders from the results. true/false.
- /// File system entries.
+ /// Directory contents returned.
+ /// Directory contents.
[HttpGet("DirectoryContents")]
[ProducesResponseType(StatusCodes.Status200OK)]
public IEnumerable GetDirectoryContents(
@@ -79,7 +80,9 @@ namespace Jellyfin.Api.Controllers
/// Validates path.
///
/// Validate request object.
- /// Status.
+ /// Path validated.
+ /// Path not found.
+ /// Validation status.
[HttpPost("ValidatePath")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
@@ -132,6 +135,7 @@ namespace Jellyfin.Api.Controllers
///
/// Gets network paths.
///
+ /// Empty array returned.
/// List of entries.
[Obsolete("This endpoint is obsolete.")]
[HttpGet("NetworkShares")]
@@ -144,6 +148,7 @@ namespace Jellyfin.Api.Controllers
///
/// Gets available drives from the server's file system.
///
+ /// List of entries returned.
/// List of entries.
[HttpGet("Drives")]
[ProducesResponseType(StatusCodes.Status200OK)]
@@ -189,6 +194,7 @@ namespace Jellyfin.Api.Controllers
///
/// Get Default directory browser.
///
+ /// Default directory browser returned.
/// Default directory browser.
[HttpGet("DefaultDirectoryBrowser")]
[ProducesResponseType(StatusCodes.Status200OK)]