POST
/
workspaces
/
import
/
upload
/
abort
curl --request POST \
  --url https://api.mudstack.com/workspaces/import/upload/abort \
  --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_id": "<string>",
  "key": "<string>"
}'
{
  "success": 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

Body

application/json
upload_id
string

The upload ID of the multi-part upload

key
string

The key of the file part

Response

200 - application/json
The result of the aborted multi-part upload
success
boolean

Indicates if the abort was successful