cURL
curl --request POST \ --url https://sbx-{sandbox_id}-{workspace_id}.{region}.bl.run/filesystem-multipart/initiate/{path} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "permissions": "0644" } '
{ "path": "/tmp/largefile.dat", "uploadId": "550e8400-e29b-41d4-a716-446655440000" }
Initiate a multipart upload session for a file
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
File path
Optional permissions
"0644"
Upload session created
"/tmp/largefile.dat"
"550e8400-e29b-41d4-a716-446655440000"
Was this page helpful?