---
title: "Reset User Rate Limit Usage"
method: POST
path: "/api/copilot/admin/rate_limit/reset"
tags: ["v2", "admin", "copilot", "admin"]
---

# Reset User Rate Limit Usage

`POST /api/copilot/admin/rate_limit/reset`

Reset a user's daily usage counter (and optionally weekly). Admin-only.

## Request body

- BodyPostV2ResetUserRateLimitUsage
  - `user_id` string, required
  - `reset_weekly` boolean

## Response `200`

Successful Response

- UserRateLimitResponse
  - `user_id` string, required
  - `user_email` string, nullable
  - `daily_cost_limit_microdollars` integer, required
  - `weekly_cost_limit_microdollars` integer, required
  - `daily_cost_used_microdollars` integer, required
  - `weekly_cost_used_microdollars` integer, required
  - `tier` 'NO_TIER' | 'BASIC' | 'PRO' | 'MAX' | 'BUSINESS' | 'ENTERPRISE', required — Subscription tiers with increasing cost allowances. Mirrors the ``SubscriptionTier`` enum in ``schema.prisma``. Once ``prisma generate`` is run, this can be replaced with:: from prisma.enums import SubscriptionTier
  - `tier_multipliers` object

## Other responses

- `401` — Authentication required
- `422` — Validation Error

## Changes

- **2026-06-04** `090eb53eb630` — 1 info
  - added the optional property `tier_multipliers` to the response with the `200` status
- **2026-04-30** `8c84efcb3afb` — 1 warning
  - removed the optional property `tier_multipliers` from the response with the `200` status

[Change history](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/changes/api/copilot/admin/rate_limit/reset/post.md)

---

[API](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server.md) · [All operations](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/significant-gravitas/autogpt-agent-server/revisions/5dc375899754/schema)
