deleteMfaDevice
Delete a multi-factor authentication (MFA) device for the authenticated user.
Arguments
Input fields for deleting an existing multi-factor authentication device for the logged user.
Returns
DeleteMfaDeviceDelete a multi-factor authentication (MFA) device for the authenticated user.
Possible Errors
Allowed Viewers
Required Permissions
Can delete mfa deviceQuery 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 DeleteMfaDevice($input: DeleteMfaDeviceInputType!) {
deleteMfaDevice(input: $input) {
deviceDeleted
}
}
Variables
{
"input": DeleteMfaDeviceInputType
}
Response
{
"data": {
"deleteMfaDevice": {
"deviceDeleted": true
}
}
}