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

# Email a stored CADOC filing again

> Mails the stored XML of a `generated` filing to the current recipient of its workflow instance, once, and returns the updated filing. Counts as one more send attempt on the same ladder as the nightly job. 404 for a filing of another workspace or a `failed` filing (nothing stored to send), 502 when the mail server rejected the message, 503 when email delivery is not configured, 409 while another send of the same filing is in flight. Not capped.



## OpenAPI

````yaml /api-reference/platform-api.json post /v2/reports/filings/{id}/resend
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/{id}/resend:
    post:
      tags:
        - Reports
      summary: Email a stored CADOC filing again
      description: >-
        Mails the stored XML of a `generated` filing to the current recipient of
        its workflow instance, once, and returns the updated filing. Counts as
        one more send attempt on the same ladder as the nightly job. 404 for a
        filing of another workspace or a `failed` filing (nothing stored to
        send), 502 when the mail server rejected the message, 503 when email
        delivery is not configured, 409 while another send of the same filing is
        in flight. Not capped.
      operationId: resend
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegulatoryFilingItemDto'
components:
  schemas:
    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
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````