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

<Note>
  If you submit a submission with no accounts, it reports that you have nothing to report for the year. A correction with no changes is refused with `409`.
</Note>


## OpenAPI

````yaml post /reports/fatca/v1/submissions/{submissionId}:submit
openapi: 3.1.0
info:
  title: FATCA REST API
  description: >
    <p>REST API for reporting FATCA (Foreign Account Tax Compliance Act) US
    reportable account data. Open a submission for

    a reporting year, send the reportable accounts under its id, then submit it
    to the tax authority.</p>
  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: FATCA REST API
    description: >-
      REST API for submitting and correcting FATCA account data. Create a
      submission for a reporting year, push the reportable accounts under its
      id, the service will package the account data and send it to the
      regulatory authority.
paths:
  /reports/fatca/v1/submissions/{submissionId}:submit:
    post:
      tags:
        - FATCA REST API
      summary: Submit
      description: >-
        Starts reporting the submission to the tax authority. After this call
        the submission is no longer editable. A submission with no accounts
        reports that there is nothing to report for the year; a correction with
        nothing in it is refused.
      operationId: submit
      parameters:
        - name: submissionId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Submission accepted for processing
        '409':
          description: Already submitted, or a correction with nothing to report
components:
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: >-
            https://auth.sandbox.finventi.com/realms/sti-connector/protocol/openid-connect/token
          scopes: {}

````