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

    assetID uuidrequired

    Unique identifier (ID) for the entity

    fileID uuidrequired

    Unique identifier (ID) for the entity

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...