Begin a chunked file write
file_write_beginStart a chunked upload for large files that exceed a single-call limit. Returns an upload_id to send ordered bytes via file_write_chunk, then commit to name the file.
Instructions
Start a chunked upload for a file too big for file_write's single call. Returns an upload_id; send the bytes in order with file_write_chunk (each chunk up to ~5 MiB of raw bytes), then file_write_commit names the file. Uploads expire after 30 idle minutes; per-file ceiling 250 MiB.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | the app this file will belong to |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| upload_id | Yes | ||
| file_limit_bytes | Yes | ||
| chunk_limit_bytes | Yes |