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

# Unfreeze Funds in a Wallet

> Return previously-frozen funds to a wallet, addressed by **wallet id**.

The amount moves from the **held** bucket back to **available**. You cannot
release more than is currently held. ``current`` is unchanged.



## OpenAPI

````yaml POST /v1/platform/wallets/by-id/{wallet_id}/holds/release
openapi: 3.1.0
info:
  title: Finogate Platform API v1
  version: 0.1.0
servers:
  - url: https://api-sandbox.finogates.com
    description: Sandbox
  - url: https://api.finogates.com
    description: Production
security: []
tags:
  - name: auth
  - name: users
  - name: payees
  - name: verification
  - name: bank accounts
  - name: card processing
  - name: digital-assets
  - name: international
  - name: fees
  - name: onboarding
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: document mailing
  - name: merchant onboarding
  - name: catalog
  - name: webhooks
  - name: screening
  - name: Platform - File Scanning
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: Card Transfers
  - name: embed-tokens
paths:
  /v1/platform/wallets/by-id/{wallet_id}/holds/release:
    post:
      tags:
        - wallets
      summary: Unfreeze Funds in a Wallet
      description: >-
        Return previously-frozen funds to a wallet, addressed by **wallet id**.


        The amount moves from the **held** bucket back to **available**. You
        cannot

        release more than is currently held. ``current`` is unchanged.
      operationId: >-
        release_wallet_hold_v1_platform_wallets_by_id__wallet_id__holds_release_post
      parameters:
        - name: wallet_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: The wallet to unfreeze funds on.
            examples:
              - a1b2c3d4-e5f6-7890-abcd-ef1234567890
            title: Wallet Id
          description: The wallet to unfreeze funds on.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WalletHoldReleaseCreate'
      responses:
        '200':
          description: Wallet balances after the release, plus the amount moved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
              example:
                status_code: 200
                data:
                  wallet_id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                  currency: USD
                  amount: '250.00'
                  available: '1000.00'
                  held: '0.00'
                  current: '1000.00'
                  reference: order-6841
                query_generated_time: 1712847600000
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    WalletHoldReleaseCreate:
      properties:
        amount:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Amount
          description: Amount to unfreeze, in major currency units.
        currency:
          type: string
          maxLength: 3
          minLength: 3
          title: Currency
          default: USD
        reason:
          anyOf:
            - type: string
              maxLength: 500
            - type: 'null'
          title: Reason
        reference:
          anyOf:
            - type: string
              maxLength: 120
            - type: 'null'
          title: Reference
      type: object
      required:
        - amount
      title: WalletHoldReleaseCreate
      description: >-
        Release (unfreeze) part or all of a wallet's held balance.


        Moves ``amount`` from the ``hold`` bucket back to ``available``. Capped
        at

        the currently-held balance — releasing more than is held is rejected.
    CommonResponse:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          title: Data
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CommonResponse
      description: |-
        Standard response wrapper for single-object responses and errors.

        Generic over the payload type. A route that declares
        ``CommonResponse[SomeModel]`` gets the real ``data`` schema rendered in
        OpenAPI/Swagger; a bare ``CommonResponse`` leaves ``data`` untyped.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````