Folders API
Deprecation notice ❗️
Below APIs are deprecated and new version of APIs are available at https://dashboard.docupilot.app/api-docs/swagger-ui/
Get list of Folders
GET
https://api.docupilot.app/api/v1/folders
This endpoint allows you to get list of folders.
Headers
Name
Type
Description
apikey
string
API Key
{
"status": "success",
"data": [
{
"id": 26,
"name": "Contracts"
},
{
"id": 36,
"name": "Client"
},
{
"id": 38,
"name": "testing"
},
{
"id": 60,
"name": "Excel"
},
{
"id": 155,
"name": "Deliveries"
}
]
}
Create a new Folder
POST
https://api.docupilot.app/api/v1/folders
This endpoint allows you to add a new folder
Headers
Name
Type
Description
apikey
string
API key
Content-Type
string
application/json
Request Body
Name
Type
Description
name
string
Folder Name
{
"status": "success",
"data": {
"id": 423,
"name": "Folder Name"
}
}
Last updated
Was this helpful?