diff --git a/ArchiSteamFarm/IPC/Controllers/Api/BotController.cs b/ArchiSteamFarm/IPC/Controllers/Api/BotController.cs
index 2a5447d22..eb969c121 100644
--- a/ArchiSteamFarm/IPC/Controllers/Api/BotController.cs
+++ b/ArchiSteamFarm/IPC/Controllers/Api/BotController.cs
@@ -378,9 +378,9 @@ namespace ArchiSteamFarm.IPC.Controllers.Api {
///
/// Denies 2FA confirmations of given bots, requires ASF 2FA module to be active on them.
///
- [HttpPost("{botNames:required}/TwoFactorAuthentication/Confirmations/Deny")]
+ [HttpPost("{botNames:required}/TwoFactorAuthentication/Confirmations/Cancel")]
[ProducesResponseType(typeof(GenericResponse>), 200)]
- public async Task>>> TwoFactorAuthenticationConfirmationsDenyPost(string botNames) => await TwoFactorAuthenticationConfirmationsPost(botNames, false).ConfigureAwait(false);
+ public async Task>>> TwoFactorAuthenticationConfirmationsCancelPost(string botNames) => await TwoFactorAuthenticationConfirmationsPost(botNames, false).ConfigureAwait(false);
///
/// Fetches 2FA tokens of given bots, requires ASF 2FA module to be active on them.