File Storage - 10MB or Less
This product is a legacy compatibility wrapper.
For new integrations, use the File Management product and call action upload_standard. 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 up to 10MB.
Required fields:
content_length_bytes: exact file size in bytes, 1 to 10,485,760
Optional fields:
filenamecontent_typeexpiration_dayssharedpassword_max_usespassword_max_minutesmetadatatags
Recommended replacement
Use File Management with:
{
"action": "upload_standard",
"content_length_bytes": 204800,
"filename": "report.pdf",
"content_type": "application/pdf"
}
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.







