Folders API

Deprecation notice ❗️

Below APIs are deprecated and new version of APIs are available at https://dashboard.docupilot.app/api-docs/swagger-ui/

Reach out to support@docupilot.app for more help on the APIs

Get list of Folders

GET https://api.docupilot.app/api/v1/folders

This endpoint allows you to get list of folders.

Headers

NameTypeDescription

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

NameTypeDescription

apikey

string

API key

Content-Type

string

application/json

Request Body

NameTypeDescription

name

string

Folder Name

{
    "status": "success",
    "data": {
        "id": 423,
        "name": "Folder Name"
    }
}

Last updated