v5

latestOpenAPI 3.1.02026-08-04166362486.5 KB
files

Complete multipart upload

Complete a multipart upload after all parts have been uploaded. Creates the file object and returns it.

post/v1/files/uploads/{upload_id}/complete

Path parameters

upload_idstring uuid required

The ID of the multipart upload

The ID of the multipart upload

Request body

Response

The completed file details

idstring required

Unique identifier for the file

filenamestring required

Name of the file including extension

bytesinteger required

Size of the file in bytes

mime_typestring required

MIME type of the file

versioninteger required

Version of the file

created_atstring date-time required

Timestamp when the file was created

updated_atstring date-time required

Timestamp when the file was last updated

Example response

{
  "id": "file_abc123",
  "filename": "document.pdf",
  "bytes": 1024,
  "mime_type": "application/pdf",
  "version": 1
}