validateMfaDevice
Validate a multi-factor authentication (MFA) device for a user.
Arguments
Input fields for validating a new multi-factor authentication device for the logged user.
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 ValidateMfaDevice($input: ValidateMfaDeviceInputType!) {
validateMfaDevice(input: $input) {
deviceIsValid
}
}
Variables
{
"input": ValidateMfaDeviceInputType
}
Response
{
"data": {
"validateMfaDevice": {
"deviceIsValid": true
}
}
}