Skip to main content
POST
/
auth
/
upload
/
{uploadId}
/
complete
Finalize TUS upload
curl --request POST \
  --url http://localhost:3000/auth/upload/{uploadId}/complete \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 123,
  "message": "OK",
  "data": {
    "url": "<string>",
    "uploadId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uploadId
string
required

Response

Default Response

statusCode
number
message
string
default:OK
data
object