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

# Update note on an account transfer

> Sets the user-authored note on a persisted account transfer. Sending an empty string or null clears it. The note survives subsequent provider re-syncs.



## OpenAPI

````yaml /api-reference/platform-api.json patch /v2/accounts/transfers/{transferId}/note
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.19
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
paths:
  /v2/accounts/transfers/{transferId}/note:
    patch:
      tags:
        - Accounts
      summary: Update note on an account transfer
      description: >-
        Sets the user-authored note on a persisted account transfer. Sending an
        empty string or null clears it. The note survives subsequent provider
        re-syncs.
      operationId: updateAccountTransactionNote
      parameters:
        - name: transferId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateConnectionTransactionNoteDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/UpdateConnectionTransactionNoteResponseDto
components:
  schemas:
    UpdateConnectionTransactionNoteDto:
      type: object
      properties:
        note:
          type: string
          nullable: true
          maxLength: 500
          example: Wire from payroll run
          description: >-
            Note text for this transaction. Send null or an empty string to
            clear it — the field itself is required (a request with no `note`
            key is rejected, so a client can never wipe a note by accident).
      required:
        - note
    UpdateConnectionTransactionNoteResponseDto:
      type: object
      properties:
        transaction_id:
          type: string
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        note:
          type: string
          nullable: true
          example: Wire from payroll run
      required:
        - transaction_id
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````