> ## Documentation Index
> Fetch the complete documentation index at: https://actelos.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove registry auth

> Deletes the stored credentials for the registry. Subsequent fetches to the registry are unauthenticated.



## OpenAPI

````yaml /openapi.json delete /registries/{id}/auth
openapi: 3.0.0
info:
  title: Cyrnel API
  description: >-
    Cyrnel is a universal layer that connects AI agents and LLM applications to
    any external service, API, or device regardless of protocol or standard. It
    acts as an adaptive bridge between your AI and the outside world, enabling
    seamless integrations through code execution, async operation handling, and
    built-in observability and security controls.
  version: 1.0.0
servers:
  - url: http://localhost:9371
security: []
paths:
  /registries/{id}/auth:
    delete:
      tags:
        - Registries
      summary: Remove registry auth
      description: >-
        Deletes the stored credentials for the registry. Subsequent fetches to
        the registry are unauthenticated.
      parameters:
        - schema:
            type: string
            minLength: 1
            description: Registry slug identifying the registry.
          required: true
          description: Registry slug identifying the registry.
          name: id
          in: path
      responses:
        '204':
          description: The credentials were deleted.
        '400':
          description: The id path parameter was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: A bearer token was required but missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '404':
          description: The registry could not be found, or it has no auth configured.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '500':
          description: The credentials could not be deleted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
components:
  schemas:
    ApiErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message returned by the API.
        code:
          type: string
          description: >-
            Stable machine-readable error code (e.g. invalid_cursor,
            cursor_expired).
      required:
        - error
      description: Standard error envelope returned by the HTTP error middleware.

````