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

# Transfer requests I filed or must decide on



## OpenAPI

````yaml /openapi.json get /api/v1/transfer_requests
openapi: 3.1.0
info:
  title: HEVN API
  description: Backend API for HEVN mobile neobank
  version: 0.1.2
servers: []
security: []
paths:
  /api/v1/transfer_requests:
    get:
      tags:
        - Transfer requests
      summary: Transfer requests I filed or must decide on
      operationId: list_transfer_requests_api_v1_transfer_requests_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TransferRequestListItem'
                title: Response List Transfer Requests Api V1 Transfer Requests Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    TransferRequestListItem:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        status:
          $ref: '#/components/schemas/TransferRequestStatus'
        accountId:
          type: string
          format: uuid
          title: Accountid
        appId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Appid
        apiKeyId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Apikeyid
        requestedByUserId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Requestedbyuserid
        transactionId:
          anyOf:
            - type: string
            - type: 'null'
          title: Transactionid
        contact:
          anyOf:
            - $ref: '#/components/schemas/TransferRequestContact'
            - type: 'null'
        invoice:
          anyOf:
            - $ref: '#/components/schemas/TransferRequestInvoice'
            - type: 'null'
        quote:
          anyOf:
            - $ref: '#/components/schemas/TransferRequestQuote'
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
          title: Amount
        memo:
          anyOf:
            - type: string
            - type: 'null'
          title: Memo
        requestedTime:
          type: string
          format: date-time
          title: Requestedtime
        chatId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Chatid
      type: object
      required:
        - id
        - status
        - accountId
        - requestedTime
      title: TransferRequestListItem
      description: |-
        A filed request with its payload references hydrated for display. A
        decline reason lives in the thread (``chatId``), not here.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TransferRequestStatus:
      type: string
      enum:
        - requested
        - approved
        - declined
        - failed
      title: TransferRequestStatus
      description: >-
        Client-facing status of a ``transfer_request`` proposal.


        The record is a proposal (seven statuses); this is the short vocabulary
        the

        API keeps for the agent and the web app, mapped from `ProposalStatus` by

        :meth:`from_proposal`.
    TransferRequestContact:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        walletAddress:
          anyOf:
            - type: string
            - type: 'null'
          title: Walletaddress
      type: object
      required:
        - id
        - name
      title: TransferRequestContact
    TransferRequestInvoice:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        amount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Amount
        currency:
          type: string
          title: Currency
        status:
          type: string
          title: Status
        invoiceNumber:
          anyOf:
            - type: string
            - type: 'null'
          title: Invoicenumber
      type: object
      required:
        - id
        - amount
        - currency
        - status
      title: TransferRequestInvoice
    TransferRequestQuote:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        pendingId:
          anyOf:
            - type: string
            - type: 'null'
          title: Pendingid
        externalId:
          anyOf:
            - type: string
            - type: 'null'
          title: Externalid
        type:
          type: string
          title: Type
        status:
          type: string
          title: Status
        provider:
          type: string
          title: Provider
        amount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Amount
        currency:
          type: string
          title: Currency
        txHash:
          anyOf:
            - type: string
            - type: 'null'
          title: Txhash
      type: object
      required:
        - id
        - type
        - status
        - provider
        - amount
        - currency
      title: TransferRequestQuote
    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:
    HTTPBearer:
      type: http
      scheme: bearer

````