Skip to content

Commit 7f1f69d

Browse files
committed
add /api/user/verify and request to clients (#53)
1 parent dcd5c86 commit 7f1f69d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/FusionAuth/FusionAuthClient.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6344,6 +6344,22 @@ public function verifyEmailAddressByUserId($request)
63446344
->go();
63456345
}
63466346

6347+
/**
6348+
* Administratively verify a user identity.
6349+
*
6350+
* @param array $request The identity verify request that contains information to verify the identity.
6351+
*
6352+
* @return ClientResponse The ClientResponse.
6353+
* @throws \Exception
6354+
*/
6355+
public function verifyIdentity($request)
6356+
{
6357+
return $this->start()->uri("/api/identity/verify")
6358+
->bodyHandler(new JSONBodyHandler($request))
6359+
->post()
6360+
->go();
6361+
}
6362+
63476363
/**
63486364
* Confirms an application registration. The Id given is usually from an email sent to the user.
63496365
*

0 commit comments

Comments
 (0)