POST
/
api
/
v1
/
files
/
multipart
/
{uploadId}
/
complete
curl --request POST \
  --url https://api.apexxcloud.com/api/v1/files/multipart/{uploadId}/complete \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --header 'X-Signature: <api-key>' \
  --header 'X-Timestamp: <api-key>' \
  --data '{
  "parts": [
    {
      "PartNumber": 123,
      "ETag": "<string>"
    }
  ]
}'
{
  "data": {
    "message": "Multipart upload completed successfully",
    "key": "<string>",
    "location": "https://cdn.apexxcloud.com/f/{access_id}/{path}",
    "size": 123,
    "bucket": "<string>",
    "region": "<string>",
    "visibility": "public",
    "content_type": "<string>"
  }
}

Authorizations

X-Access-Key
string
header
required

Your API Access Key

X-Signature
string
header
required

HMAC SHA-256 signature of the request

X-Timestamp
string
header
required

ISO 8601 timestamp of the request

Path Parameters

uploadId
string
required

Query Parameters

bucket_name
string
required
region
string
required
key
string
required

Body

application/json
parts
object[]
required

Response

200
application/json
Multipart upload completed successfully
data
object