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

# Soft-delete a snapshot on a custom connection

> Removes one (account, asset, as_of) observation from the live bag and records a delete event on the edit trail. Sibling assets stay.



## OpenAPI

````yaml /api-reference/platform-api.json delete /v2/account-connections/{id}/snapshots/{snapshotId}
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}/snapshots/{snapshotId}:
    delete:
      tags:
        - Account Connections
      summary: Soft-delete a snapshot on a custom connection
      description: >-
        Removes one (account, asset, as_of) observation from the live bag and
        records a delete event on the edit trail. Sibling assets stay.
      operationId: deleteSnapshot
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: snapshotId
          required: true
          in: path
          schema:
            type: string
      responses:
        '204':
          description: ''
components:
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````