### Reset quota counters

`POST /api/v1/users/{id}/reset-quota`

Always zeroes the daily counters. With clear_period true it also nulls the period quota, which is the destructive form. Lifts a daily FUP throttle and kicks the live session so full speed returns immediately. An empty body is accepted and means clear_period false.

- Authentication: manager session (JWT) or API token
- Permission: `prm_users_reset_quota` (Reset user quota)
- Risk: write
- Rate limit bucket: `t_mutate`

#### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | integer | yes | Subscriber id. |
| `clear_period` | body | boolean | no | Also null the period quota counters. Defaults to false. |
| `reason` | body | string | no | Free-text note recorded on the quota-history audit row. |

#### Errors

| Code | Status | When |
| --- | --- | --- |
| `ERR_NOT_FOUND` | 404 | no such subscriber |

