> ## 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/fatca/v1/submissions/{submissionId}/status
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}/status:
    get:
      tags:
        - FATCA 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/FatcaSubmissionStatusResponse'
              examples:
                example:
                  $ref: '#/components/examples/FatcaGetStatus200'
components:
  schemas:
    FatcaSubmissionStatusResponse:
      type: object
      description: Current status of a submission
      properties:
        submissionId:
          type: string
        status:
          $ref: '#/components/schemas/FatcaSubmissionStatus'
      required:
        - status
        - submissionId
    FatcaSubmissionStatus:
      type: string
      description: High-level lifecycle status of a submission
      enum:
        - DRAFT
        - PROCESSING
        - ACTION_REQUIRED
        - REPORTED
        - FAILED
  examples:
    FatcaGetStatus200:
      value:
        submissionId: 3f2a9c1e-7b4d-4e8a-9f61-2c5d8e0b1a47
        status: PROCESSING
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: >-
            https://auth.sandbox.finventi.com/realms/sti-connector/protocol/openid-connect/token
          scopes: {}

````