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

# Submit

> Hand the submission off to be reported to the tax authority.

<Warning>
  After this call the submission is no longer editable. Push all accounts first.
</Warning>


## OpenAPI

````yaml post /reports/crs/v1/submissions/{submissionId}:submit
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}:submit:
    post:
      tags:
        - CRS REST API
      summary: Submit
      description: >-
        Starts reporting the submission to the tax authority. After this call
        the submission is no longer editable.
      operationId: submit
      parameters:
        - name: submissionId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Submission accepted for processing
components:
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: >-
            https://auth.sandbox.finventi.com/realms/sti-connector/protocol/openid-connect/token
          scopes: {}

````