> ## Documentation Index
> Fetch the complete documentation index at: https://eomer.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Complete Upload



## OpenAPI

````yaml POST /storage/uploads/{object_id}/complete
openapi: 3.1.0
info:
  title: eomer.ai Forecasting API
  description: >-
    Production-grade time series forecasting and natural-language forecasting
    agent
  version: 0.1.0
servers: []
security: []
tags:
  - name: forecasting
    description: Time-series forecasting jobs
  - name: agent
    description: >-
      Natural-language forecasting: extract intent from a prompt, profile and
      recommend a model, and auto-submit a forecast.
  - name: tabular
    description: Classification and regression
  - name: fine-tuning
    description: Custom model training
  - name: storage
    description: Cloud dataset storage
  - name: estimates
    description: Cost and runtime estimation
  - name: system
    description: Health checks and model catalog
paths:
  /storage/uploads/{object_id}/complete:
    post:
      tags:
        - storage
      summary: Complete Upload
      operationId: complete_upload_storage_uploads__object_id__complete_post
      parameters:
        - name: object_id
          in: path
          required: true
          schema:
            type: string
            title: Object Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StorageCompleteUploadRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StorageObjectResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    StorageCompleteUploadRequest:
      properties:
        verify_object:
          type: boolean
          title: Verify Object
          default: true
        expected_file_size:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
          title: Expected File Size
      additionalProperties: false
      type: object
      title: StorageCompleteUploadRequest
      description: Request body for completing an upload.
    StorageObjectResponse:
      properties:
        object_id:
          type: string
          title: Object Id
        status:
          $ref: '#/components/schemas/StorageObjectStatus'
        original_filename:
          type: string
          title: Original Filename
        content_type:
          type: string
          title: Content Type
        file_size:
          anyOf:
            - type: integer
            - type: 'null'
          title: File Size
        created_at:
          type: string
          format: date-time
          title: Created At
        uploaded_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Uploaded At
      type: object
      required:
        - object_id
        - status
        - original_filename
        - content_type
        - created_at
      title: StorageObjectResponse
      description: Metadata response for a tenant-owned stored object.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    StorageObjectStatus:
      type: string
      enum:
        - presigned
        - uploaded
        - failed
      title: StorageObjectStatus
      description: Status values for tenant-scoped uploaded objects.
    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:
    HTTPBearer:
      type: http
      scheme: bearer

````