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

# Remove a resource

Removes a resource by name.


## OpenAPI

````yaml /api-reference/openapi.local.json DELETE /config/resources
openapi: 3.1.0
info:
  title: btca Local Server API
  version: 2.0.0
  description: Local HTTP API exposed by btca-server.
servers:
  - url: http://localhost:{port}
    variables:
      port:
        default: '8080'
security: []
paths:
  /config/resources:
    delete:
      summary: Remove a resource by name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveResourceRequest'
      responses:
        '200':
          description: Removal result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoveResourceResponse'
components:
  schemas:
    RemoveResourceRequest:
      type: object
      required:
        - name
      properties:
        name:
          type: string
    RemoveResourceResponse:
      type: object
      required:
        - success
        - name
      properties:
        success:
          type: boolean
        name:
          type: string

````