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

# List submissions

> List the submissions and corrections you have opened.



## OpenAPI

````yaml get /reports/fatca/v1/submissions
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:
    get:
      tags:
        - FATCA REST API
      summary: List submissions
      description: >-
        Lists the submissions and corrections you have opened, optionally
        filtered by reporting year.
      operationId: listSubmissions
      parameters:
        - name: reportingYear
          in: query
          required: false
          schema:
            type: integer
            format: int32
            maximum: 2100
            minimum: 2014
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FatcaSubmissionSummary'
              examples:
                example:
                  $ref: '#/components/examples/FatcaListSubmissions200'
components:
  schemas:
    FatcaSubmissionSummary:
      type: object
      description: >-
        A submission or correction you have opened, with its year and current
        status
      properties:
        submissionId:
          type: string
        reportingYear:
          type: integer
          format: int32
        kind:
          $ref: '#/components/schemas/FatcaSubmissionKind'
        status:
          $ref: '#/components/schemas/FatcaSubmissionStatus'
      required:
        - kind
        - reportingYear
        - status
        - submissionId
    FatcaSubmissionKind:
      type: string
      description: >-
        SUBMISSION reports accounts for a year not yet reported; CORRECTION
        amends what was already reported for it.
      enum:
        - SUBMISSION
        - CORRECTION
    FatcaSubmissionStatus:
      type: string
      description: High-level lifecycle status of a submission
      enum:
        - DRAFT
        - PROCESSING
        - ACTION_REQUIRED
        - REPORTED
        - FAILED
  examples:
    FatcaListSubmissions200:
      value:
        - submissionId: 3f2a9c1e-7b4d-4e8a-9f61-2c5d8e0b1a47
          reportingYear: 2025
          kind: SUBMISSION
          status: DRAFT
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: >-
            https://auth.sandbox.finventi.com/realms/sti-connector/protocol/openid-connect/token
          scopes: {}

````