Skip to content

deleteTotpConfigs

Reset TOTP configuration for multiple users. Return true when the operation succeeds.

Arguments

Argument Type Description
input (required) DeleteTotpConfigsInput! Input required for resetting TOTP for users in batch.

Returns

Boolean!

Sample

mutation DeleteTotpConfigs($input: DeleteTotpConfigsInput!) {
  deleteTotpConfigs(input: $input)
}
{
  "input": {}
}
{
  "data": {
    "deleteTotpConfigs": true
  }
}