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

# List stored CADOC filings

> Every nightly CADOC filing recorded for the caller workspace, newest base date first, optionally for one workflow instance. `status` is `generated` (XML stored; `sent_at` says whether it was mailed) or `failed` (`failure_reason` says why, no XML). `send_attempts`, `last_send_attempt_at` and `last_send_error` expose the mail ladder: the sidecar retries an unsent filing every 5 minutes up to 4 attempts, then opens a case. The XML itself is never returned here.



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/reports/filings
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.24
  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/reports/filings:
    get:
      tags:
        - Reports
      summary: List stored CADOC filings
      description: >-
        Every nightly CADOC filing recorded for the caller workspace, newest
        base date first, optionally for one workflow instance. `status` is
        `generated` (XML stored; `sent_at` says whether it was mailed) or
        `failed` (`failure_reason` says why, no XML). `send_attempts`,
        `last_send_attempt_at` and `last_send_error` expose the mail ladder: the
        sidecar retries an unsent filing every 5 minutes up to 4 attempts, then
        opens a case. The XML itself is never returned here.
      operationId: list
      parameters:
        - name: workflow_id
          required: false
          in: query
          description: Only filings of this workflow instance.
          schema:
            type: string
            format: uuid
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 100
            default: 20
            type: number
        - name: cursor
          required: false
          in: query
          description: >-
            Opaque pagination cursor from a previous response — echo back
            `meta.next_cursor` verbatim.
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFilingsResponseDto'
components:
  schemas:
    ListFilingsResponseDto:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/RegulatoryFilingItemDto'
        meta:
          $ref: '#/components/schemas/CursorMetaDto'
      required:
        - items
        - meta
    RegulatoryFilingItemDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        workflow_id:
          type: string
          format: uuid
        template:
          type: string
          example: cadoc-5711
        base_date:
          type: string
          example: '2026-09-08'
        status:
          type: string
          enum:
            - generated
            - failed
        failure_reason:
          type: string
          nullable: true
          enum:
            - PARTIAL_SNAPSHOT
            - MODEL_INVALID
            - NO_SERIALIZER
            - UNKNOWN
        unstamped_accounts:
          type: number
        sent_at:
          format: date-time
          type: string
          nullable: true
          description: Set once the mail went out.
        send_attempts:
          type: number
          description: SMTP attempts so far, manual resends included.
        last_send_attempt_at:
          type: string
          nullable: true
          format: date-time
        last_send_error:
          type: string
          nullable: true
          enum:
            - UNCONFIGURED
            - SMTP_ERROR
            - REJECTED
            - TIMEOUT
            - UNKNOWN
            - UNCONFIRMED
        created_at:
          format: date-time
          type: string
      required:
        - id
        - workflow_id
        - template
        - base_date
        - status
        - failure_reason
        - unstamped_accounts
        - sent_at
        - send_attempts
        - last_send_attempt_at
        - last_send_error
        - created_at
    CursorMetaDto:
      type: object
      properties:
        next_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the next page of results. null if
            there is no next page.
          example: eyJpZCI6IjkxeFFlV3Z...
        previous_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the previous page of results. null
            if there is no previous page.
          example: eyJpZCI6IjkxeFFlV3Z...
        first_page_cursor:
          type: string
          description: >-
            Opaque string cursor pointing to the very first page in the entire
            dataset with respect to the current filter.
          example: eyJpZCI6IjkxeFFlV3Z...
        last_page_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the very last page in the entire
            dataset with respect to the current filter.
          example: eyJpZCI6IjkxeFFlV3Z...
        total_count:
          type: number
          nullable: true
          description: Total number of results.
          example: 100
        page_number:
          type: number
          description: Current page number.
          example: 1
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````