upload_file_to_signed_url
upload_file_to_signed_url
Uploads a local transcript file to Mind Reasoner’s secure cloud storage using a signed URL. The file is uploaded directly from your system to storage.
No data passes through the AI assistant—files go straight from your system to secure cloud storage.
Parameters
signedUrl
filePath
contentType
Request
Response
Response Properties
Once you receive a success response, your file is securely stored and ready for processing.
File Path Requirements
Use absolute paths: /Users/name/Documents/file.vtt
Don’t use relative paths: ./file.vtt or ../Documents/file.vtt
Before uploading:
- Verify the file exists at the specified path
- Ensure file permissions allow reading
- Confirm the file isn’t corrupted or empty
- Match
contentTypeto the actual file extension
Common Issues
Error Responses
File Not Found
Solution: Verify the path is correct and use absolute paths, not relative paths. Ensure the file wasn’t moved or deleted.
Permission Denied
Solution: Check file permissions with ls -l and make the file readable with chmod 644 if needed.
Upload Failed
Solution: Check if the signed URL expired (1-hour limit) and request a new signed URL if needed.
