Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/fusionauth/fusionauth_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4894,6 +4894,18 @@ def verify_email_address_by_user_id(request)
.go
end

#
# Administratively verify a user identity.
#
# @param request [OpenStruct, Hash] The identity verify request that contains information to verify the identity.
# @return [FusionAuth::ClientResponse] The ClientResponse object.
def verify_identity(request)
start.uri('/api/identity/verify')
.body_handler(FusionAuth::JSONBodyHandler.new(request))
.post
.go
end

#
# Confirms an application registration. The Id given is usually from an email sent to the user.
#
Expand Down