Skip to main content

Complete File Upload

POST 

/api/inspect/v1/file/upload/complete

Mark a file as uploaded after using the presigned URL.

This endpoint is used to finalize the file upload process when uploading via a presigned URL. After successfully uploading the file to cloud storage, you must call this endpoint to mark the file as successfully uploaded. This step is necessary for the system to recognize the file and process it appropriately. Without calling this endpoint, the file will remain in an incomplete state and may not be available for further operations.

This endpoint should be used in combination with the File Upload - Presigned URL endpoint.

Request

Body

required

    fileID uuidrequired

    The unique identifier (UUID) of the file that was uploaded using the presigned URL. This parameter is used to mark the file as successfully uploaded, allowing the system to recognize it as complete.

    assetID uuidrequired

    The unique identifier (UUID) of the asset to which the uploaded file belongs. This parameter ensures that the file is correctly linked to the asset in the system for future operations or retrieval.

Responses

204 No Content. The file upload has been successfully marked as complete. No content is returned in the response, indicating that the file is now ready for further processing or retrieval.

Loading...