> ## 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/mai55/v1/submissions
openapi: 3.1.0
info:
  title: MAI55 REST API
  description: >
    <p>REST API for reporting MAI55 data to the Lithuanian State Tax
    Inspectorate. Open a submission for a

    reporting year, push the reportable persons under its id, then submit it to
    the tax authority.</p>


    <p>A submission carries exactly one sub-report, chosen with
    <code>type</code>: <strong>SIPL</strong> (account

    incomes), <strong>SLIK</strong> (account balances) or <strong>SKIS</strong>
    (outstanding debt

    agreements).</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: Submissions
  - name: SLIK
  - name: SKIS
  - name: SIPL
paths:
  /reports/mai55/v1/submissions:
    get:
      tags:
        - Submissions
      summary: List submissions
      description: >-
        Lists the submissions and corrections you have opened, optionally
        filtered by sub-report and reporting year.
      operationId: listSubmissions
      parameters:
        - name: type
          in: query
          description: >-
            Filter to one sub-report. Omitted, every sub-report you hold the
            permission for is listed.
          required: false
          schema:
            type: string
            enum:
              - SIPL
              - SLIK
              - SKIS
        - name: reportingYear
          in: query
          required: false
          schema:
            type: integer
            format: int32
            maximum: 2100
            minimum: 2016
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SubmissionSummary'
              examples:
                ListSubmissions200:
                  $ref: '#/components/examples/ListSubmissions200'
components:
  schemas:
    SubmissionSummary:
      type: object
      description: >-
        A submission or correction you have opened, with its sub-report, year
        and current status
      properties:
        submissionId:
          type: string
        type:
          type: string
          description: Which sub-report this submission carries
          enum:
            - SIPL
            - SLIK
            - SKIS
          example: SLIK
        reportingYear:
          type: integer
          format: int32
          example: 2025
        kind:
          $ref: '#/components/schemas/SubmissionKind'
        status:
          $ref: '#/components/schemas/SubmissionStatus'
      required:
        - kind
        - reportingYear
        - status
        - submissionId
        - type
    SubmissionKind:
      type: string
      description: >-
        SUBMISSION reports a year not yet reported for this sub-report;
        CORRECTION amends what was already reported for it.
      enum:
        - SUBMISSION
        - CORRECTION
    SubmissionStatus:
      type: string
      description: High-level lifecycle status of a submission
      enum:
        - DRAFT
        - PROCESSING
        - ACTION_REQUIRED
        - REPORTED
        - FAILED
  examples:
    ListSubmissions200:
      value:
        - submissionId: 6f1b0c1e-6c0b-4c39-9a2e-1d9d2f0f7a11
          type: SLIK
          reportingYear: 2025
          kind: CORRECTION
          status: DRAFT
        - submissionId: b3c9a4d2-1f77-4f0e-8d3a-5c6b7e8f9a01
          type: SIPL
          reportingYear: 2025
          kind: SUBMISSION
          status: REPORTED
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: >-
            https://auth.sandbox.finventi.com/realms/sti-connector/protocol/openid-connect/token
          scopes: {}

````