diff --git a/bitwarden_license/src/Scim/Users/PostUserCommand.cs b/bitwarden_license/src/Scim/Users/PostUserCommand.cs index 57233b69e7..d05188ebc4 100644 --- a/bitwarden_license/src/Scim/Users/PostUserCommand.cs +++ b/bitwarden_license/src/Scim/Users/PostUserCommand.cs @@ -98,6 +98,16 @@ public class PostUserCommand( var result = await inviteOrganizationUsersCommand.InviteScimOrganizationUserAsync(request); + if (result is Failure failure) + { + if (failure.ErrorMessages.Count != 0) + { + throw new BadRequestException(failure.ErrorMessage); + } + + return null; + } + if (result is not Success successfulResponse) { return null;