# Resend the access email

`POST https://api.cademi.com.br/api/v3/administrators/{administrator_id}/invitation-emails`

Operation ID: `administrators.invitation_emails.create` · API v3

Resends the access email to the administrator.

This operation replaces the administrator's password with a new one, which is sent by email and never included in the response. The email is sent asynchronously.

An access email can be sent to the same administrator at most once every 10 minutes. Earlier attempts return `email_recently_sent`.

Required permissions: `administrators.send_access`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `administrator_id` | path | string | yes |  |
| `Idempotency-Key` | header | string | yes |  |

## Responses

### 202

The access email was accepted and queued for delivery.

Body: `data`: object.

Fields of object:

| Field | Type | Required | Description |
|---|---|---|---|
| `object` | string, one of `invitation_email` | yes |  |
| `status` | string, one of `queued` | yes |  |

### 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 administrator was not found or is not accessible with the current credentials.

Body: Error.

### 409

An access email was sent to this administrator less than 10 minutes ago.

Body: Error.

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