> ## Documentation Index
> Fetch the complete documentation index at: https://www.edenai.co/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete manageauth keys 

> ``DELETE /v3/manage/auth-keys/{key_id}`` (``manage:mint``) -- an issuer revokes a WORKER key it
manages (terminal, idempotent). Refuses an ISSUER-key target: issuer keys are born and killed only
from the owner-authed dashboard, mirroring the no-self-propagation rule on mint. Org-scoped: a
key_id outside the issuer's org is a 404.



## OpenAPI

````yaml https://api.edenai.run/v2/info/splitted-schema/management_api/openapi.json delete /manage/auth-keys/{key_id}/
openapi: 3.0.3
info:
  title: Organization Management
  version: '2.0'
  description: Your project description
servers:
  - url: https://api.edenai.run/v3
security: []
paths:
  /manage/auth-keys/{key_id}/:
    delete:
      tags:
        - auth-keys
      description: >-
        ``DELETE /v3/manage/auth-keys/{key_id}`` (``manage:mint``) -- an issuer
        revokes a WORKER key it

        manages (terminal, idempotent). Refuses an ISSUER-key target: issuer
        keys are born and killed only

        from the owner-authed dashboard, mirroring the no-self-propagation rule
        on mint. Org-scoped: a

        key_id outside the issuer's org is a 404.
      operationId: manage_auth_keys_destroy
      parameters:
        - in: path
          name: key_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '204':
          description: No response body

````