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

# Abandon Deposit

> Mark a previously-built deposit as abandoned. Called when the user
rejects the wallet prompt or otherwise never broadcasts. Without this the
record sits in `pending` for the full 4h abandon timeout.



## OpenAPI

````yaml https://api.yieldo.xyz/openapi.json patch /v1/deposits/{tracking_id}/abandon
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}/abandon:
    patch:
      tags:
        - deposits
      summary: Abandon Deposit
      description: >-
        Mark a previously-built deposit as abandoned. Called when the user

        rejects the wallet prompt or otherwise never broadcasts. Without this
        the

        record sits in `pending` for the full 4h abandon timeout.
      operationId: abandon_deposit_v1_deposits__tracking_id__abandon_patch
      parameters:
        - name: tracking_id
          in: path
          required: true
          schema:
            type: string
            title: Tracking Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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

````