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

# Auto-resolve as escalated and return the evidence bundle (email delivery is a follow-up)



## OpenAPI

````yaml /api-reference/platform-api.json post /v2/cases/{id}/escalate
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.16
  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/cases/{id}/escalate:
    post:
      tags:
        - Cases
      summary: >-
        Auto-resolve as escalated and return the evidence bundle (email delivery
        is a follow-up)
      operationId: escalate
      parameters:
        - name: id
          required: true
          in: path
          description: The case id (uuid).
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EscalateCaseDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EscalateCaseResponseDto'
components:
  schemas:
    EscalateCaseDto:
      type: object
      properties:
        note:
          type: string
          maxLength: 2000
          example: Escalating for SAR filing.
    EscalateCaseResponseDto:
      type: object
      properties:
        recipient:
          type: string
          example: analyst@range.org
          description: >-
            Caller's workspace email — the delivery target once email sending
            ships.
        bundle_id:
          type: string
        escalated_at:
          type: string
        bundle:
          $ref: '#/components/schemas/EscalationBundleDto'
      required:
        - recipient
        - bundle_id
        - escalated_at
        - bundle
    EscalationBundleDto:
      type: object
      properties:
        case:
          $ref: '#/components/schemas/CaseDto'
        timeline:
          type: array
          items:
            $ref: '#/components/schemas/CaseTimelineEntryDto'
        investigations:
          type: array
          items:
            $ref: '#/components/schemas/InvestigationDto'
      required:
        - case
        - timeline
        - investigations
    CaseDto:
      type: object
      properties:
        id:
          type: string
        workspace_id:
          type: string
        title:
          type: string
        status:
          type: string
          enum:
            - open
            - in_review
            - resolved
        resolution:
          type: string
          nullable: true
          enum:
            - dismissed
            - escalated
        severity:
          type: string
          enum:
            - severe
            - high
            - medium
            - low
        source_type:
          enum:
            - risk_screen
            - sanctions_screen
            - alert_event
            - manual
          type: string
        source_id:
          type: string
          nullable: true
        subject:
          $ref: '#/components/schemas/CaseSubjectDto'
        assignee:
          type: string
          nullable: true
        created_by:
          type: string
          nullable: true
        created_at:
          type: string
        updated_at:
          type: string
        resolved_at:
          type: string
          nullable: true
        viewed:
          type: boolean
          description: Whether the calling user has opened this case before.
        comments:
          type: array
          items:
            $ref: '#/components/schemas/CaseCommentDto'
        evidence_summary:
          type: object
          nullable: true
      required:
        - id
        - workspace_id
        - title
        - status
        - severity
        - source_type
        - subject
        - created_at
        - updated_at
        - viewed
        - comments
    CaseTimelineEntryDto:
      type: object
      properties:
        id:
          type: string
        action:
          enum:
            - created
            - assigned
            - status_changed
            - commented
            - escalated
            - investigation_linked
            - duplicate_matched
          type: string
        actor:
          type: string
          example: analyst@range.org
        details:
          type: object
          description: Discriminated union keyed by `action` (see CaseTimelineDetailsMap).
        created_at:
          type: string
      required:
        - id
        - action
        - actor
        - details
        - created_at
    InvestigationDto:
      type: object
      properties:
        id:
          type: string
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        workspace_id:
          type: string
          example: workspace-123
        title:
          type: string
          example: Peel chain from Binance hot wallet
        subject_type:
          type: string
          nullable: true
          enum:
            - address
            - transaction
        subject_address:
          type: string
          nullable: true
          example: 0xabc...
        subject_network:
          type: string
          nullable: true
          example: eth
        subject_tx_hash:
          type: string
          nullable: true
          example: 0xdef...
        status:
          type: string
          enum:
            - open
            - archived
          example: open
        created_by:
          type: string
          nullable: true
          example: analyst@range.org
        created_at:
          type: string
          example: '2026-07-09T00:00:00.000Z'
        updated_at:
          type: string
          example: '2026-07-09T00:00:00.000Z'
        data:
          type: object
          example:
            nodes: []
            notes: []
            canvas: {}
          description: Trail canvas snapshot (nodes, notes, canvas state)
      required:
        - id
        - workspace_id
        - title
        - status
        - created_at
        - updated_at
        - data
    CaseSubjectDto:
      type: object
      properties:
        type:
          enum:
            - address
            - transaction
            - counterparty
          type: string
        address:
          type: string
          maxLength: 256
          example: '0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28'
        network:
          type: string
          maxLength: 256
          example: ethereum
        tx_hash:
          type: string
          maxLength: 256
          example: 0xabc...
        name:
          type: string
          maxLength: 256
          description: Always populated — falls back to a shortened address/tx_hash.
      required:
        - type
    CaseCommentDto:
      type: object
      properties:
        id:
          type: string
        author:
          type: string
          example: analyst@range.org
        body:
          type: string
        created_at:
          type: string
      required:
        - id
        - author
        - body
        - created_at
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````