File
File upload APIs.
📄️ Complete File Upload
Mark a file as uploaded after using the presigned URL.
📄️ File Upload - Simple
This endpoint allows users to upload files smaller than 5MB directly to the cloud. It is suitable for simple file uploads that don’t involve large files or multiple files in one request. The uploaded file can be any supported file type and is processed immediately after upload. Ensure that the file size does not exceed the 5MB limit.
📄️ File Upload - Presigned URL
This endpoint generates a presigned URL that allows users to upload a file directly to the cloud storage service. The presigned URL is valid for 15 minutes and must be used within this timeframe to upload the file. The response will return a `fileID` and the presigned URL. Ensure that the `Content-Type` header in the upload request matches the `contentType` provided in the request body when generating the presigned URL.