POST
/
workspaces
/
assets
/
upload
/
multi
/
signedurl
curl --request POST \
  --url https://api.mudstack.com/workspaces/assets/upload/multi/signedurl \
  --header 'Authorization: Bearer <token>' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "key": "<string>",
  "signed_url": "<string>"
}

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

key
string
required

The key of the object being uploaded.

upload_id
string
required

The ID of the multi-part upload.

part_no
integer
required

The part number of the upload.

content_type
string
required

The content type of the part being uploaded.

checksum
string
required

The checksum of the part being uploaded.

Response

200 - application/json
Successfully generated the signed URL.

Represents a signed URL for uploading an asset.

key
string

The unique key associated with the upload.

signed_url
string

The signed URL used for uploading the asset.