Work Drive API

Dive into the specifics of API endpoint by checking out our complete documentation.

Upload any types of files.

Maximum file size is 25mb.

How to Upload file with Postman

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.

Create a POST Request

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

Headers

Name
Type
Description

String

Add Authentication

Add authentication bearer token in auth section, this will be given by Qikberry.

Add Header

Add header details header section, the value will be given by Qikberry.

Add file as form data

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.

Send the Request

Click the Send button to send the request. You will get a public URL.

In this example, the web API returns the above response.

Last updated

Was this helpful?