Skip to main content
POST
/
uploads
/
multipart
/
complete
Complete a multipart upload
curl --request POST \
  --url https://core.cyberun.cloud/api/v1/uploads/multipart/complete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "storage_key": "<string>",
  "upload_id": "<string>",
  "completed_parts": [
    {
      "part_number": 123,
      "etag": "<string>"
    }
  ]
}
'
{
  "storage_key": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session JWT (Bearer ). Must be paired with the X-Team-ID request header on team-scoped endpoints so the server knows which team's resources to operate on.

Body

application/json

Complete a multipart upload after all parts have been uploaded.

storage_key
string
required

S3 object key for the upload.

upload_id
string
required

S3 multipart upload identifier from initiate.

completed_parts
object[]
required

List of successfully uploaded parts with their ETags.

Minimum array length: 1

Response

Multipart upload completed

storage_key
string
required

S3 object key of the completed upload.