> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finventi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a submission

> Discard a draft submission and every account pushed under it.

<Note>
  The deletion runs in the background — the call returns immediately, and a draft with a large number of accounts may take a while to disappear. Once the submission has been sent to the tax authority it can no longer be deleted.
</Note>


## OpenAPI

````yaml delete /reports/crs/v1/submissions/{submissionId}
openapi: 3.1.0
info:
  title: CRS REST API
  version: 0.0.1
servers:
  - url: https://api.rrc.dev.finventi.com
    description: Development
  - url: https://api.rrc.finventi.com
    description: Production
security:
  - bearer-jwt: []
tags:
  - name: CRS REST API
    description: >-
      REST API for submitting and correcting CRS/DAC2 account data. Open a
      submission for a reporting year, push the reportable accounts under its
      id, then submit it to the tax authority.
paths:
  /reports/crs/v1/submissions/{submissionId}:
    delete:
      tags:
        - CRS REST API
      summary: Delete a submission
      description: >-
        Deletes a whole submission and every account pushed under it while it is
        still a draft. Once the submission has been sent to the tax authority it
        can no longer be deleted. The deletion runs in the background — the call
        returns immediately, and a draft with a large number of accounts may
        take a while to disappear.
      operationId: deleteSubmission
      parameters:
        - name: submissionId
          in: path
          required: true
          schema:
            type: string
      responses:
        '202':
          description: Deletion accepted; runs in the background
        '409':
          description: Submission already submitted
components:
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: >-
            https://auth.sandbox.finventi.com/realms/sti-connector/protocol/openid-connect/token
          scopes: {}

````