1. File upload during chat
Storm OpenAPI(en)
  • Welcome to STORM
    • Introduction
  • Quickstart
    • Getting Started
      • Account Creation
      • Creating an Agent
    • Core Scenario
      • Document Upload
      • Workflow Design
      • Test
      • Deployment
      • Channel Integration
  • Feature Guide
    • Console
      • Agent Management
      • Dashboard
      • Permission Management
    • Agent Template
      • Deep Knowledge Exploration
      • Explore knowledge
      • Free Chat
      • Create reports
      • FAQ Chatbot
      • Resume Screening
      • Character Conversation
      • Analyze chat history
      • Write articles
      • Write SQL queries
    • Agent Builder
      • Knowledge
        • Documents
        • Folders
        • Feedback
      • Workflow
        • Node Description
          • LLM
          • Search(RAG)
          • Agentic RAG
          • API
          • IF ELSE
          • Variable Declaration and Assignment
          • Postprocessing
          • Response
          • Loop
          • Document Generation
      • Test
      • Log
      • Dashboard
    • Admin Tools
      • Deployment Management
      • Channel Integration
      • Model Fine-Tuning
      • Training Data Quality Management
      • Other Settings
      • Teams Channel Integration
  • Apis
    • Agent
      • Deploy Agent
      • View Agent Deployment History
      • View Agent
    • Bucket
      • Create Bucket
      • View Bucket
    • Document
      • Document Training Request by file
      • Document Training Request by URL
      • View Documents
      • Delete Document
    • Chat
      • File upload during chat
        • File creation and presigned URL issuance
          POST
        • File upload completion handling
          POST
        • File status lookup
          GET
      • Chat Sending (OpenAI Compatible)
        POST
      • Send Chat (non-stream)
        POST
      • Send Chat (stream)
        POST
      • Search Context
        POST
    • STORM Parse
      • /convert/md
    • Instance Agent
      • Add Instance Session
      • Upload Instance Document
      • Request RAG Source For Query
      • Delete Instance Session
  • Learn More
    • FAQ
    • Pricing
    • Error Code Guide
      • AgentRag
      • ApiCall
      • DocGen
      • Function
      • IfElse
      • Loop
      • OpenLLM
      • Post
      • Rag
      • Response
      • Variable
  1. File upload during chat

File upload completion handling

Developing
POST
/api//v2/temp-files/{id}/complete
This API must be called after the file upload to S3 is completed.
When this API is called, the server recognizes the uploaded file and starts the file parsing process.
If this API is not called, the file will not be parsed and cannot be used in chat.

Request

Authorization
Add parameter in header
storm-api-key
Example:
storm-api-key: ********************
Path Params

Responses

🟒204
This response does not have a body.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api//v2/temp-files/0806790591403921408/complete' \
--header 'storm-api-key: <api-key>'
Modified atΒ 2026-03-03 05:09:26
Previous
File creation and presigned URL issuance
Next
File status lookup
Built with