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

# Get submission status

> The high-level lifecycle status of a submission.



## OpenAPI

````yaml get /reports/crs/v1/submissions/{submissionId}/status
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}/status:
    get:
      tags:
        - CRS REST API
      summary: Get submission status
      description: >-
        Returns the current high-level status of the submission: DRAFT,
        PROCESSING, ACTION_REQUIRED, REPORTED, or FAILED.
      operationId: getStatus
      parameters:
        - name: submissionId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CrsSubmissionStatusResponse'
              example:
                submissionId: 6f1b0c1e-6c0b-4c39-9a2e-1d9d2f0f7a11
                status: PROCESSING
components:
  schemas:
    CrsSubmissionStatusResponse:
      type: object
      description: Current status of a submission
      properties:
        submissionId:
          type: string
        status:
          $ref: '#/components/schemas/CrsSubmissionStatus'
      required:
        - status
        - submissionId
    CrsSubmissionStatus:
      type: string
      description: High-level lifecycle status of a submission
      enum:
        - DRAFT
        - PROCESSING
        - ACTION_REQUIRED
        - REPORTED
        - FAILED
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: >-
            https://auth.sandbox.finventi.com/realms/sti-connector/protocol/openid-connect/token
          scopes: {}

````