Skip to content
TALA
Esc
navigateopen⌘Jpreview

Abort an active multipart upload

POST/api/upload/abort
Authorization
AuthorizationBearer token (JWT) · headerrequired
Header parameters
x-organization-idstring
Target organization id. Defaults to the caller's personal organization when omitted.
Request body
requiredapplication/json
uploadIdstringrequired
keystringrequired
Responses
200Upload aborted and S3 resources cleaned up
any
500Internal Server Error
any
Try it
Server
Authorization
Parameters
Bodyapplication/json
Request
curl -X POST "http://localhost:8000/api/upload/abort" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "uploadId": "upload123",
  "key": "collection/CL01/098ujhbmnkj809/example.png"
}'
Response
{
  "message": "Upload aborted successfully"
}