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

# Report Deposit Tx

> Report the actual on-chain tx hash for a previously-built deposit.
Closes the loop between /v1/quote/build (which saves the request before the
tx exists) and /v1/status (which needs a tx_hash to fetch LiFi state).
Without this, transactions stay `pending` forever in HistoryPage.



## OpenAPI

````yaml https://api.yieldo.xyz/openapi.json patch /v1/deposits/{tracking_id}/tx
openapi: 3.1.0
info:
  title: Yieldo API
  description: Cross-chain deposit aggregator for ERC-4626 and custom yield vaults
  version: 1.0.0
servers:
  - url: https://api.yieldo.xyz
    description: Production
security: []
paths:
  /v1/deposits/{tracking_id}/tx:
    patch:
      tags:
        - deposits
      summary: Report Deposit Tx
      description: >-
        Report the actual on-chain tx hash for a previously-built deposit.

        Closes the loop between /v1/quote/build (which saves the request before
        the

        tx exists) and /v1/status (which needs a tx_hash to fetch LiFi state).

        Without this, transactions stay `pending` forever in HistoryPage.
      operationId: report_deposit_tx_v1_deposits__tracking_id__tx_patch
      parameters:
        - name: tracking_id
          in: path
          required: true
          schema:
            type: string
            title: Tracking Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DepositTxReport'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DepositTxReport:
      properties:
        tx_hash:
          type: string
          title: Tx Hash
      type: object
      required:
        - tx_hash
      title: DepositTxReport
    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

````