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

# Read the edit trail for a custom connection

> Newest-first attributable trail of every create/replace/delete/import on this connection. Bounded by `limit`; optionally filtered by `object`.



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/account-connections/{id}/revisions
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.27
  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/account-connections/{id}/revisions:
    get:
      tags:
        - Account Connections
      summary: Read the edit trail for a custom connection
      description: >-
        Newest-first attributable trail of every create/replace/delete/import on
        this connection. Bounded by `limit`; optionally filtered by `object`.
      operationId: listRevisions
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: object
          required: false
          in: query
          schema:
            type: string
            enum:
              - account
              - snapshot
              - movement
              - file
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 200
            default: 50
            type: number
        - name: cursor
          required: false
          in: query
          description: Opaque offset cursor from a previous page `meta.next_cursor`.
          schema:
            type: string
      responses:
        '200':
          description: Edit-trail events
components:
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````