> ## Documentation Index
> Fetch the complete documentation index at: https://docs.datawiz.io/connector-api/llms.txt
> Use this file to discover all available pages before exploring further.

# Get upload session status



## OpenAPI

````yaml /connector-api/openapi.json get /uploading/{upload_uuid}/status
openapi: 3.1.0
info:
  title: Connector API
  version: 0.1.0
servers:
  - url: https://etl-api-dev2.datawiz.io/api/v1
    description: Connector API
security: []
paths:
  /uploading/{upload_uuid}/status:
    get:
      tags:
        - Uploading
      summary: Get upload session status
      operationId: get_upload_session_status_api_v1_uploading__upload_uuid__status_get
      parameters:
        - name: upload_uuid
          in: path
          required: true
          schema:
            type: string
            title: Upload Uuid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UploadSessionStatusResponse'
        '400':
          description: >-
            Missing Client-Id header. Body: `{"detail": "Client-ID header is
            missing"}`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetailResponse'
        '401':
          description: >-
            Invalid or missing access token. Body: `{"detail": "User not
            authenticated"}`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetailResponse'
        '404':
          description: >-
            No session record in PostgreSQL and no live Redis state. Body:
            `{"detail": "Upload session not found"}`. Does not validate that
            upload_uuid is the active session (no 403).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetailResponse'
        '413':
          description: >-
            Request body exceeds size limit (32 MB for ingest, 1 MB for other
            requests).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '503':
          description: Rate limit or concurrent connection limit exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetailResponse'
      security:
        - Authorization: []
          Client-Id: []
components:
  schemas:
    UploadSessionStatusResponse:
      properties:
        upload_uuid:
          type: string
          title: Upload Uuid
          description: Upload session identifier.
        session_status:
          type: string
          title: Session Status
          description: 'Current session status: UPLOADING, STARTED, DONE, or DELETED.'
        entities:
          items:
            type: string
          type: array
          title: Entities
          description: Task-type names of entities uploaded in this session.
        upload_tasks_finished:
          type: boolean
          title: Upload Tasks Finished
          description: True when all background S3 write tasks have finished.
        can_upload_entities:
          type: boolean
          title: Can Upload Entities
          description: True when entity ingest is allowed.
        can_start_upload:
          type: boolean
          title: Can Start Upload
          description: True when ETL can be started.
        can_terminate:
          type: boolean
          title: Can Terminate
          description: True when the running ETL workflow can be terminated.
      type: object
      required:
        - upload_uuid
        - session_status
        - entities
        - upload_tasks_finished
        - can_upload_entities
        - can_start_upload
        - can_terminate
      title: UploadSessionStatusResponse
    ErrorDetailResponse:
      properties:
        detail:
          anyOf:
            - type: string
            - additionalProperties: true
              type: object
          title: Detail
          description: Error message or structured error object.
      type: object
      required:
        - detail
      title: ErrorDetailResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: Authorization
    Client-Id:
      type: apiKey
      in: header
      name: Client-Id

````