> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete an Authenticator

> Deletes an associated authenticator using its ID. You can get authenticator IDs by listing the authenticators.

`DELETE /mfa/authenticators/{AUTHENTICATOR_ID}`

Deletes an associated authenticator using its ID. You can get authenticator IDs by listing the authenticators.

To access this endpoint, you must set an Access Token in the Authorization header, with the following claims:

* `scope`: `remove:authenticators`
* `audience`: `https://{yourDomain}/mfa/`

## Parameters

<ParamField path="AUTHENTICATOR_ID" type="string" required>
  The ID of the authenticator to delete.
</ParamField>

<ParamField header="Authorization" type="string" required>
  The Access Token obtained during login.
</ParamField>

## Response

| Status | Description                          |
| ------ | ------------------------------------ |
| 204    | Authenticator deleted successfully.  |
| 401    | Unauthorized - Invalid access token. |
| 404    | Authenticator not found.             |
