---
title: "POST /auth/passwordless/clear-ratelimit - Authentication · RUAL Documentation"
description: "POST: Admin endpoint to clear rate limit for passwordless login"
canonical: https://docs.rual.nl/cluster/api/authentication/auth-passwordless-clear-ratelimit-post
language: en
---

# POST /auth/passwordless/clear-ratelimit

Admin endpoint to clear rate limit for passwordless login

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **[authorization](https://docs.rual.nl/cluster/api#token-providing)** required | `string` | `"Bearer access_token"` | Access token |

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **entity** optional | `string` | `1` |  |
| **identifier** required | `string` | `"example"` | Email or phone to clear rate limit |

```
{
  "error": "INVALID_TYPE",
  "success": true
}
```

```
{
  "code": 401,
  "error": "INVALID_ACCESS_TOKEN"
}
```

| Status | Error Code | Description |
| --- | --- | --- |
| `401` | `INVALID_ACCESS_TOKEN` | Authentication required or invalid token |
| `403` | `INSUFFICIENT_PERMISSIONS` | Insufficient permissions for this operation |

| Permission | Description |
| --- | --- |
| `Bearer token` | Access token required via Authorization header, x-authtoken, x-token, query param, or cookie |
| `users_setting_manage_users` | Required scope: users_setting_manage_users |
| `setting_manage_users` | Additional permission check: setting_manage_users |
