diff --git a/src/Api/Public/Controllers/GroupsController.cs b/src/Api/Public/Controllers/GroupsController.cs
index 8333bc7368..6df656b3cc 100644
--- a/src/Api/Public/Controllers/GroupsController.cs
+++ b/src/Api/Public/Controllers/GroupsController.cs
@@ -73,6 +73,7 @@ namespace Bit.Api.Public.Controllers
///
/// Creates a new group object.
///
+ /// The request model.
[HttpPost]
[ProducesResponseType(typeof(GroupResponseModel), (int)HttpStatusCode.OK)]
[ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)]
@@ -93,6 +94,7 @@ namespace Bit.Api.Public.Controllers
/// the value of the existing property will be reset.
///
/// The identifier of the group to be updated.
+ /// The request model.
[HttpPut("{id}")]
[ProducesResponseType(typeof(GroupResponseModel), (int)HttpStatusCode.OK)]
[ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)]