Skip to content

Commit c9ca41d

Browse files
committed
add /api/user/verify and request to clients (#44)
1 parent ee15d6d commit c9ca41d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/main/python/fusionauth/fusionauth_client.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4889,6 +4889,18 @@ def verify_email_address_by_user_id(self, request):
48894889
.post() \
48904890
.go()
48914891

4892+
def verify_identity(self, request):
4893+
"""
4894+
Administratively verify a user identity.
4895+
4896+
Attributes:
4897+
request: The identity verify request that contains information to verify the identity.
4898+
"""
4899+
return self.start().uri('/api/identity/verify') \
4900+
.body_handler(JSONBodyHandler(request)) \
4901+
.post() \
4902+
.go()
4903+
48924904
@deprecated("This method has been renamed to verify_user_registration and changed to take a JSON request body, use that method instead.")
48934905
def verify_registration(self, verification_id):
48944906
"""

0 commit comments

Comments
 (0)