POST
/
workspaces
/
assets
/
upload
/
multi
/
complete
curl --request POST \
  --url https://api.mudstack.com/workspaces/assets/upload/multi/complete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>' \
  --data '{
  "upload_parts": [
    {
      "ETag": "<string>",
      "PartNumber": 123
    }
  ]
}'
true

Authorizations

Authorization
string
header
required

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

Headers

x-account-id
string
required
x-workspace-id
string
required

Query Parameters

upload_id
string
required

The ID of the multi-part upload.

key
string
required

The key of the object being uploaded.

checksum
string

The checksum of the upload.

Body

application/json
upload_parts
object[]

Represents a part in a completed multipart upload.

Response

200 - application/json
Successfully completed the multi-part upload.

The response is of type boolean.