We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcd5c86 commit 7f1f69dCopy full SHA for 7f1f69d
src/FusionAuth/FusionAuthClient.php
@@ -6344,6 +6344,22 @@ public function verifyEmailAddressByUserId($request)
6344
->go();
6345
}
6346
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
+
6363
/**
6364
* Confirms an application registration. The Id given is usually from an email sent to the user.
6365
*
0 commit comments