Skip to main content
POST
/
api
/
v1
/
multipart
/
complete
curl --request POST \
  --url https://upload.autorender.io/api/v1/multipart/complete \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
  "session_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}'
{
  "success": true,
  "data": {
    "id": "<string>",
    "file_no": "<string>",
    "name": "big-video.mp4",
    "url": "<string>",
    "path": "uploads/videos",
    "width": null,
    "height": null,
    "format": "mp4",
    "file_size": 73400320,
    "workspace_no": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://autorender.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

curl --request POST \
  --url https://upload.autorender.io/api/v1/multipart/complete \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
  "session_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}'
{
  "success": true,
  "data": {
    "id": "<string>",
    "file_no": "<string>",
    "name": "big-video.mp4",
    "url": "<string>",
    "path": "uploads/videos",
    "width": null,
    "height": null,
    "format": "mp4",
    "file_size": 73400320,
    "workspace_no": "<string>"
  }
}

Overview

Completes the multipart session after every part has been uploaded with PUT to the presigned URLs. The file is assembled and registered in your workspace.

Authentication

Authorization: Bearer YOUR_API_KEY

Workflow

This is step 3 of 3.
  1. Multipart start
  2. Upload parts
  3. Multipart complete (this endpoint) — body: { "session_id": "<from start>" }

Request body

FieldTypeRequiredDescription
session_idstringYessession_id from the start response

Authorizations

Authorization
string
header
required

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

Body

application/json
session_id
string
required

Session id from POST /api/v1/multipart/start

Response

Multipart upload completed

success
boolean
required

Indicates if the upload was successful

data
object
required