Finalize chunked upload.
Parameters
| Name | Type | Description |
id required | string | current upload id |
cb optional | function | callback function |
Example Result
this.finalizeChunkedUpload = function(id, cb) {
return _request({
method: 'GET',
url: '/upload/finalize/' + id,
callback: cb
});
};
Add Comment