K
Docs
API ReferencePiecesRemove Timeout
🔔

Remove Timeout

mod.untimeoutThe Mod SquadModeration

Clears an active timeout and restores a member's ability to chat. Handy for manual override commands — a mod can un-mute someone before their timeout would naturally expire.

When to use this
  • Connect the Error port — if the member wasn't timed out, the flow takes that path

On the canvas

This is what Remove Timeout looks like when you place it on your flow. Each field below is something you configure in the inspector panel.

🔔
Remove Timeout
mod.untimeout
Moderation
userIdrequired
{{user.id}}
output
error

Config fields

FieldTypeReqWhat it does
userId
{{user.id}}
textyesWho to un-mute 👤

Output ports

outputTimeout cleared
errorMember wasn't timed out, or bot lacks permission
📐

In TypeScript, this would be…

Not something you need to write — just a look at what Kitcord does for you.

TypeScript
try {
  const member = await guild.members.fetch(userId);
  await member.timeout(null);
} catch {
  // Error port
}