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.
Examples
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": "plant-section-five-act-film"
}
}
}