File Storage - Over 10MB
This product is a legacy compatibility wrapper.
For new integrations, use the File Management product and call action upload_large. That is now the canonical upload path and keeps upload plus file lifecycle management on one product.
Legacy action
upload
Generate a signed upload URL for a file over 10MB and up to 100MB.
Required fields:
content_length_bytes: exact file size in bytes, greater than 10,485,760 and up to 104,857,600
Optional fields:
filenamecontent_typeexpiration_dayssharedpassword_max_usespassword_max_minutesmetadatatags
Recommended replacement
Use File Management with:
{
"action": "upload_large",
"content_length_bytes": 20971520,
"filename": "dataset.zip",
"content_type": "application/zip"
}
Notes
- This wrapper remains active for backward compatibility.
- New callers should not depend on this product.
- After receiving
upload_url, perform a PUT request with the returned headers and exact file bytes.







