Skip to main content
POST
/
filesystem-multipart
/
{uploadId}
/
complete
Complete multipart upload
curl --request POST \
  --url https://run.blaxel.ai/{workspace_id}/sandboxes/{sandbox_id}/filesystem-multipart/{uploadId}/complete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "parts": [
    {
      "etag": "5d41402abc4b2a76b9719d911017c592",
      "partNumber": 1
    }
  ]
}'
{
  "message": "File created successfully",
  "path": "/path/to/file"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

uploadId
string
required

Upload ID

Body

application/json

List of parts

parts
object[]

Response

Upload completed

message
string
required
Example:

"File created successfully"

path
string
Example:

"/path/to/file"