diff --git a/devolutions-gateway/openapi/doc/index.adoc b/devolutions-gateway/openapi/doc/index.adoc
index 10ab3a1a0..33101edf7 100644
--- a/devolutions-gateway/openapi/doc/index.adoc
+++ b/devolutions-gateway/openapi/doc/index.adoc
@@ -528,7 +528,7 @@ endif::internal-generation[]
`DELETE /jet/jrec/delete/{id}`
-Lists all recordings stored on this instance
+Deletes a recording stored on this instance
===== Description
diff --git a/devolutions-gateway/openapi/dotnet-client/README.md b/devolutions-gateway/openapi/dotnet-client/README.md
index 111d7bdda..03bf01949 100644
--- a/devolutions-gateway/openapi/dotnet-client/README.md
+++ b/devolutions-gateway/openapi/dotnet-client/README.md
@@ -147,7 +147,7 @@ Class | Method | HTTP request | Description
*DiagnosticsApi* | [**GetLogs**](docs/DiagnosticsApi.md#getlogs) | **GET** /jet/diagnostics/logs | Retrieves latest logs.
*HealthApi* | [**GetHealth**](docs/HealthApi.md#gethealth) | **GET** /jet/health | Performs a health check
*HeartbeatApi* | [**GetHeartbeat**](docs/HeartbeatApi.md#getheartbeat) | **GET** /jet/heartbeat | Performs a heartbeat check
-*JrecApi* | [**DeleteRecording**](docs/JrecApi.md#deleterecording) | **DELETE** /jet/jrec/delete/{id} | Lists all recordings stored on this instance
+*JrecApi* | [**DeleteRecording**](docs/JrecApi.md#deleterecording) | **DELETE** /jet/jrec/delete/{id} | Deletes a recording stored on this instance
*JrecApi* | [**ListRecordings**](docs/JrecApi.md#listrecordings) | **GET** /jet/jrec/list | Lists all recordings stored on this instance
*JrecApi* | [**PullRecordingFile**](docs/JrecApi.md#pullrecordingfile) | **GET** /jet/jrec/pull/{id}/{filename} | Retrieves a recording file for a given session
*JrlApi* | [**GetJrlInfo**](docs/JrlApi.md#getjrlinfo) | **GET** /jet/jrl/info | Retrieves current JRL (Json Revocation List) info
diff --git a/devolutions-gateway/openapi/dotnet-client/docs/JrecApi.md b/devolutions-gateway/openapi/dotnet-client/docs/JrecApi.md
index 730deffb1..f5e069a3e 100644
--- a/devolutions-gateway/openapi/dotnet-client/docs/JrecApi.md
+++ b/devolutions-gateway/openapi/dotnet-client/docs/JrecApi.md
@@ -4,7 +4,7 @@ All URIs are relative to *http://localhost*
| Method | HTTP request | Description |
|--------|--------------|-------------|
-| [**DeleteRecording**](JrecApi.md#deleterecording) | **DELETE** /jet/jrec/delete/{id} | Lists all recordings stored on this instance |
+| [**DeleteRecording**](JrecApi.md#deleterecording) | **DELETE** /jet/jrec/delete/{id} | Deletes a recording stored on this instance |
| [**ListRecordings**](JrecApi.md#listrecordings) | **GET** /jet/jrec/list | Lists all recordings stored on this instance |
| [**PullRecordingFile**](JrecApi.md#pullrecordingfile) | **GET** /jet/jrec/pull/{id}/{filename} | Retrieves a recording file for a given session |
@@ -12,7 +12,7 @@ All URIs are relative to *http://localhost*
# **DeleteRecording**
> void DeleteRecording (Guid id)
-Lists all recordings stored on this instance
+Deletes a recording stored on this instance
### Example
```csharp
@@ -42,7 +42,7 @@ namespace Example
try
{
- // Lists all recordings stored on this instance
+ // Deletes a recording stored on this instance
apiInstance.DeleteRecording(id);
}
catch (ApiException e)
@@ -62,7 +62,7 @@ This returns an ApiResponse object which contains the response data, status code
```csharp
try
{
- // Lists all recordings stored on this instance
+ // Deletes a recording stored on this instance
apiInstance.DeleteRecordingWithHttpInfo(id);
}
catch (ApiException e)
diff --git a/devolutions-gateway/openapi/dotnet-client/src/Devolutions.Gateway.Client/Api/JrecApi.cs b/devolutions-gateway/openapi/dotnet-client/src/Devolutions.Gateway.Client/Api/JrecApi.cs
index cd46082fa..7b9d840c0 100644
--- a/devolutions-gateway/openapi/dotnet-client/src/Devolutions.Gateway.Client/Api/JrecApi.cs
+++ b/devolutions-gateway/openapi/dotnet-client/src/Devolutions.Gateway.Client/Api/JrecApi.cs
@@ -29,7 +29,7 @@ public interface IJrecApiSync : IApiAccessor
{
#region Synchronous Operations
///
- /// Lists all recordings stored on this instance
+ /// Deletes a recording stored on this instance
///
/// Thrown when fails to make API call
/// Recorded session ID
@@ -37,7 +37,7 @@ public interface IJrecApiSync : IApiAccessor
void DeleteRecording(Guid id);
///
- /// Lists all recordings stored on this instance
+ /// Deletes a recording stored on this instance
///
///
///
@@ -92,7 +92,7 @@ public interface IJrecApiAsync : IApiAccessor
{
#region Asynchronous Operations
///
- /// Lists all recordings stored on this instance
+ /// Deletes a recording stored on this instance
///
///
///
@@ -104,7 +104,7 @@ public interface IJrecApiAsync : IApiAccessor
System.Threading.Tasks.Task DeleteRecordingAsync(Guid id, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
///
- /// Lists all recordings stored on this instance
+ /// Deletes a recording stored on this instance
///
///
///
@@ -374,7 +374,7 @@ public Devolutions.Gateway.Client.Client.ExceptionFactory ExceptionFactory
}
///
- /// Lists all recordings stored on this instance
+ /// Deletes a recording stored on this instance
///
/// Thrown when fails to make API call
/// Recorded session ID
@@ -385,7 +385,7 @@ public void DeleteRecording(Guid id)
}
///
- /// Lists all recordings stored on this instance
+ /// Deletes a recording stored on this instance
///
/// Thrown when fails to make API call
/// Recorded session ID
@@ -429,7 +429,7 @@ public Devolutions.Gateway.Client.Client.ApiResponse