IncompleteFile

Represents an in-progress, partial upload for a user. Used to track uploads that are not yet complete, or are still processing in the background.

Fields

NameTypeDescription
idstringUnique identifier for the incomplete upload.
createdAtDateWhen this incomplete upload was created.
updatedAtDateWhen this incomplete upload was last updated.
statusIncompleteFileStatusStatus of the upload (e.g. IN_PROGRESS, COMPLETE).
chunksTotalnumberTotal number of chunks expected for the upload.
chunksCompletenumberNumber of chunks that have been uploaded so far.
userIdstringThe ID of the user who owns this upload.
metadataIncompleteFileMetadataMetadata about the file being uploaded.

IncompleteFileStatus

ValueDescription
PENDINGUpload is waiting to start or resume.
PROCESSINGUpload is actively being processed (chunks coming in).
COMPLETEAll chunks have been uploaded and processed. The incompletefile can be deleted now.
FAILEDUpload has failed due to an error, check logs.

IncompleteFileMetadata

NameTypeDescription
fileobjectInformation about the target file.
└─ filenamestringThe name of the file.
└─ typestringThe MIME type of the file.
└─ idstringThe unique ID assigned to the file.


Last updated: 6/2/2025
Edit this page on GitHub