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

# Rename Wallet

> Renames a specific wallet within a wallet group.



## OpenAPI

````yaml /api/swagger.json patch /wallets/{group_id}/{wallet_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}/{wallet_id}:
    patch:
      tags:
        - Wallet
      summary: Rename Wallet
      description: Renames a specific wallet within a wallet group.
      parameters:
        - name: group_id
          in: path
          description: Wallet Group ID
          required: true
          schema:
            type: string
        - name: wallet_id
          in: path
          description: Wallet ID
          required: true
          schema:
            type: string
      requestBody:
        description: Rename Wallet Request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/handlers.renameGroupRequest'
        required: true
      responses:
        '200':
          description: OK
          content: {}
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
        '404':
          description: Wallet or Group not found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.renameGroupRequest:
      type: object
      properties:
        new_name:
          type: string
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string

````