diff --git a/src/Transaction.jl b/src/Transaction.jl
index cbffb5029bc70ec3cd2e720d4fdd328445f6f224..a84588c412a2b0cc1a324e7e1169fb1a3e05f7a6 100644
--- a/src/Transaction.jl
+++ b/src/Transaction.jl
@@ -243,9 +243,13 @@ function add_retrieve_by_id(
 end
 
 """
-    function add_delete_by_id(transaction::Ref{_Transaction}, id::AbstractString)
+    function add_retrieve_and_download_file_by_id(
+        transaction::Ref{_Transaction},
+        id::AbstractString,
+        path::AbstractString,
+    )
 
-Add a sub-request to delete a single entity to the given `transaction`.
+Add a sub-request to retrieve and download a single entity (File) to the given `transaction`.
 
 !!! info