> ## 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 managekeys 

> ``GET`` (read), ``PATCH`` (write, policy fields + rename), ``DELETE`` (write, IRREVERSIBLE revoke)
for one key at ``/v3/manage/keys/{key_id}``, org-scoped: a ``key_id`` not in the calling key's org
is a 404, not another org's key. DELETE destroys the secret and keeps the row marked revoked (see
``destroy``); there is no re-enable. Balance is pending-adjusted. Never returns the secret or its hash.



## OpenAPI

````yaml https://api.edenai.run/v2/info/splitted-schema/management_api/openapi.json delete /manage/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/keys/{key_id}/:
    delete:
      tags:
        - keys
      description: >-
        ``GET`` (read), ``PATCH`` (write, policy fields + rename), ``DELETE``
        (write, IRREVERSIBLE revoke)

        for one key at ``/v3/manage/keys/{key_id}``, org-scoped: a ``key_id``
        not in the calling key's org

        is a 404, not another org's key. DELETE destroys the secret and keeps
        the row marked revoked (see

        ``destroy``); there is no re-enable. Balance is pending-adjusted. Never
        returns the secret or its hash.
      operationId: manage_keys_destroy
      parameters:
        - in: path
          name: key_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '204':
          description: No response body

````