With the BitBar REST API, you can manage, upload, get, download, update, and delete files.
curl -X POST -u <api-key>: https://cloud.bitbar.com/api/me/files -F "file=@BitbarSampleApp.apk"
curl -u <api-key>: https://cloud.bitbar.com/api/me/files/{file-ID}
curl -u <api-key>: https://cloud.bitbar.com/api/me/files
curl -L -u <api-key>: https://cloud.bitbar.com/api/me/files/{file-ID}/file --output FILE
curl -X DELETE -u <api-key>: https://cloud.bitbar.com/api/me/files/{file-ID}
curl -X POST -u <api-key>: https://cloud.bitbar.com/api/me/files/{file-ID}?name=new-file-name
curl -X POST -u <api-key>: https://cloud.bitbar.com/api/me/files/{file-ID}/file -F "file=@BitbarSampleApp2.apk"