users_reset_traffic
Reset the traffic counter for a specific user in the Remnawave VPN panel to clear usage data and restart monitoring.
Instructions
Reset traffic counter for a Remnawave user
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | User UUID |
Implementation Reference
- src/tools/users.ts:224-238 (handler)The tool 'users_reset_traffic' is defined and registered using server.tool, calling client.resetUserTraffic to execute the reset logic.
server.tool( 'users_reset_traffic', 'Reset traffic counter for a Remnawave user', { uuid: z.string().describe('User UUID'), }, async ({ uuid }) => { try { const result = await client.resetUserTraffic(uuid); return toolResult(result); } catch (e) { return toolError(e); } }, );