startCustomerVerification
Start the customer verification using the provided verification method.
Arguments
Returns
StartCustomerVerificationStart the customer verification using the provided verification method.
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 StartCustomerVerification($input: StartCustomerVerificationInput!) {
startCustomerVerification(input: $input) {
verificationProcess {
...VerificationProcessFragment
}
}
}
Variables
{
"input": StartCustomerVerificationInput
}
Response
{
"data": {
"startCustomerVerification": {
"verificationProcess": VerificationProcess
}
}
}