diff --git a/seq-api.sln.DotSettings b/seq-api.sln.DotSettings
index 832d668..0cbd2ce 100644
--- a/seq-api.sln.DotSettings
+++ b/seq-api.sln.DotSettings
@@ -1,4 +1,7 @@
-
+
AD
+ True
+ True
True
- True
\ No newline at end of file
+ True
+
diff --git a/src/Seq.Api/ResourceGroups/EventsResourceGroup.cs b/src/Seq.Api/ResourceGroups/EventsResourceGroup.cs
index cca68e7..c8b736c 100644
--- a/src/Seq.Api/ResourceGroups/EventsResourceGroup.cs
+++ b/src/Seq.Api/ResourceGroups/EventsResourceGroup.cs
@@ -34,6 +34,8 @@ public async Task FindAsync(
if (id == null) throw new ArgumentNullException(nameof(id));
var parameters = new Dictionary {{"id", id}};
+ if (render) parameters.Add("render", true);
+ if (permalinkId != null) parameters.Add("permalinkId", permalinkId);
return await GroupGetAsync("Item", parameters, cancellationToken).ConfigureAwait(false);
}