Skip to content

Commit 958c3cd

Browse files
committed
add /api/user/verify and request to clients (#37)
1 parent e54ed1a commit 958c3cd

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

lib/fusionauth/fusionauth_client.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4894,6 +4894,18 @@ def verify_email_address_by_user_id(request)
48944894
.go
48954895
end
48964896

4897+
#
4898+
# Administratively verify a user identity.
4899+
#
4900+
# @param request [OpenStruct, Hash] The identity verify request that contains information to verify the identity.
4901+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
4902+
def verify_identity(request)
4903+
start.uri('/api/identity/verify')
4904+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
4905+
.post
4906+
.go
4907+
end
4908+
48974909
#
48984910
# Confirms an application registration. The Id given is usually from an email sent to the user.
48994911
#

0 commit comments

Comments
 (0)