# Send a password reset email

`POST https://api.cademi.com.br/api/v3/users/{user_id}/password-reset-emails`

Operation ID: `users.password_reset_emails.create` · API v3

Sends the user an email with a link to reset their password.

A password reset email can be sent to the same user at most once every 10 minutes. Earlier attempts return `email_recently_sent`.

Required permissions: `users.send_access`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `user_id` | path | string | yes |  |

## Responses

### 202

The password reset email was accepted for delivery.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 404

The user was not found or is not accessible with the current credentials.

Body: Error.

### 409

A password reset email was already sent to this user in the last 10 minutes.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
