All REST Endpoints

List Uploaded File
List Uploaded Files
Method: get
Path: /ohfapi/storage/v1.0/storage/list
Move a file
Moves a Single File.
Method: put
Path: /ohfapi/storage/v1.0/storage/move/{srcBucketName}/{destBucketName}/{objectName}
Moves a Single File.
Method: put
Path: /ohfapi/storage/v1.0/storage/move/{srcBucketName}/{destBucketName}/{objectName}/parts/{partNumber}
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: delete
Path: /ohfapi/storage/v1.0/storage/{bucketName}/{objectName}/parts/{partNumber}
Manage the Multipart Upload
Method: post
Path: /ohfapi/storage/v1.0/storage/{bucketName}/{objectName}/parts
Upload a File Part
Method: put
Path: /ohfapi/storage/v1.0/storage/{bucketName}/{objectName}/parts/{partNumber}
Single File Upload
This section describes the APIs to upload a single file of size less than 1GB into the storage.
Delete a Specific File
Method: delete
Path: /ohfapi/storage/v1.0/storage/{bucketName}/{objectName}
Upload a File
Method: put
Path: /ohfapi/storage/v1.0/storage/{bucketName}/{objectName}
Uncompress Uploaded File
This API uncompresses an uploaded file.
Uncompress an Uploaded File
Method: post
Path: /ohfapi/storage/v1.0/storage/{bucketName}/{objectName}