verifyIdentity
Provide identifying information about an account and user to get a scoped token that will permit access to associate an email address with the account's user.
Arguments
Details about the user to be verified.
Returns
VerifyIdentityProvide identifying information about an account and user to get a scoped token that will permit access to associate an email address with the account's user.
Possible Errors
Allowed Viewers
Required Permissions
(No)Rate Limits
| Key | Steps |
|---|---|
ip |
['50/m'] |
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation VerifyIdentity($input: VerifyIdentityInput!) {
verifyIdentity(input: $input) {
token
}
}
Variables
{
"input": VerifyIdentityInput
}
Response
{
"data": {
"verifyIdentity": {
"token": "issue-move-training-produce-everyone"
}
}
}