Uploads a file in chunks or as a whole. The URL is generated by the upload URL endpoint. When uploading in chunks, the current chunk number starts at 0 and the total number of chunks must be provided as a query string parameter. Multiple chunks can be uploaded in parallel. To notify that the last chunk has been uploaded and no more are expected, a final request needs to be made with only the parameter of the chunk.
Security
OAuth2
- https://your-serverhttps://your-server/api/v2.0/upload/process
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
curl -i -X POST \
'https://your-server/api/v2.0/upload/process?key=string&name=string&expires=2019-08-24T14%3A15%3A22Z&chunk=0&chunks=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "success": true, "message": "string" }