Skip to content

Commit 3e881f7

Browse files
committed
add /api/user/verify and request to clients
1 parent 9eb38b5 commit 3e881f7

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

src/main/python/fusionauth/fusionauth_client.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4872,6 +4872,18 @@ def verify_email_address_by_user_id(self, request):
48724872
.post() \
48734873
.go()
48744874

4875+
def verify_identity(self, request):
4876+
"""
4877+
Administratively verify a user identity.
4878+
4879+
Attributes:
4880+
request: The identity verify request that contains information to verify the identity.
4881+
"""
4882+
return self.start().uri('/api/identity/verify') \
4883+
.body_handler(JSONBodyHandler(request)) \
4884+
.post() \
4885+
.go()
4886+
48754887
@deprecated("This method has been renamed to verify_user_registration and changed to take a JSON request body, use that method instead.")
48764888
def verify_registration(self, verification_id):
48774889
"""

0 commit comments

Comments
 (0)