Work Drive API
Dive into the specifics of API endpoint by checking out our complete documentation.
Last updated
Dive into the specifics of API endpoint by checking out our complete documentation.
Last updated
Upload any types of files.
Maximum file size is 25mb.
When you're developing a web API with file uploading, you can use Postman to send files in test request. This simplifies development because you don't have to write your own client side code for sending test requests.
In Postman, create a new request by clicking the plus (+) button.
Set method to POST and fill the request URL.
POST
https://wkdrive.qikberry.io/api/v1/upload
String
Add authentication bearer token in auth section, this will be given by Qikberry.
Add header details header section, the value will be given by Qikberry.
In the Body tab, select the form-data option. Then hover your mouse over the row so you can see a dropdown appear that says Text. Click this dropdown set it to File.
Fill in the key name. If the web API is receiving the file with a parameter / property, then make sure this key name matches the parameter name. Finally, click the Select Files button.
Clicking Select Files will open a file selection dialog window.
Click the Send button to send the request. You will get a public URL.
In this example, the web API returns the above response.