Multipart File Upload REST Endpoints
Multipart File Upload
This section describes the APIs to upload files of size larger than 1 GB into the storage. Split the file into multiple file parts using standard file splitting tools. Make sure that the size of each file part does not exceed 1 GB. All file parts should be uploaded individually and merged on successful uploads using the APIs listed in this section.
- Delete a File Part
- Method: deletePath:
/ohfapi/storage/v1.0/storage/{bucketName}/{objectName}/parts/{partNumber}
- Manage the Multipart Upload
- Method: postPath:
/ohfapi/storage/v1.0/storage/{bucketName}/{objectName}/parts
- Upload a File Part
- Method: putPath:
/ohfapi/storage/v1.0/storage/{bucketName}/{objectName}/parts/{partNumber}