POST
/
workspaces
/
import
/
upload
/
part
curl --request POST \
  --url https://api.mudstack.com/workspaces/import/upload/part \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>' \
  --data '{
  "key": "<string>",
  "upload_id": "<string>",
  "part_no": 123,
  "mime_type": "<string>",
  "checksum": {
    "algorithm": "CRC32",
    "value": "<string>"
  }
}'
{
  "signedUrl": "<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

Body

application/json
key
string

The key of the file part

upload_id
string

The upload ID of the multi-part upload

part_no
integer

The part number of the file part

mime_type
string

The MIME type of the file part

checksum
object

Payload containing checksum information.

Response

200 - application/json
Signed URL for the temp location
signedUrl
string

The signed URL for the temp location