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

# Delete Wallet Group

> Deletes a wallet group by its ID.



## OpenAPI

````yaml /api/swagger.json delete /wallets/{group_id}
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /wallets/{group_id}:
    delete:
      tags:
        - Wallet
      summary: Delete Wallet Group
      description: Deletes a wallet group by its ID.
      parameters:
        - name: group_id
          in: path
          description: Wallet Group ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content: {}
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string

````