Cut.ProDocs
Videos

Finalize a multipart upload

Assembles the uploaded parts into the final object. Only needed when POST /videos/upload answered with mode: "multipart". After this succeeds, call POST /videos/upload/complete to register the video.

X-Api-Key<token>

In: header

Request Body

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

POST
/videos/upload/multipart/complete
curl -X POST "https://example.com/videos/upload/multipart/complete" \  -H "Content-Type: application/json" \  -d '{    "video_id": "string",    "upload_id": "string",    "parts": [      {        "partNumber": 0,        "etag": "string"      }    ]  }'
{  "video_id": "string"}