Docupilot
HomeLoginSignup
  • Docupilot Help Documentation
  • Getting Started
  • Building Templates
    • Tokens (Merge Field)
    • Document Builder
    • AI-Powered Template Builder
    • Word Document (DOCX) & PowerPoint (PPTX)
    • Excel (XLSX)
    • Fillable PDF
    • Template Preferences
    • Formatting Your Data
    • Numerical Calculations
    • Advanced usage
  • Test your document template
  • Deliveries
    • Email
    • Webhook
    • Dropbox
    • Google Drive
    • One Drive
    • DropboxSign (formerly Hellosign)
    • DocuSign
    • SignNow
    • Xodo sign (formerly Eversign)
    • Signable
    • Yousign
    • Amazon S3
    • SFTP
  • Create document
    • Data Capture Form
    • API & Webhook Integration
    • Bulk Create
    • Integrate with Zapier
    • Integrate with Make
    • Integrate with Zoho Flow
    • Integrate with Integrately
  • Integrations
    • Google Forms
    • Google Sheets
    • Airtable Extension
    • Docupilot Add in for Microsoft Word
  • Collaborating with multiple users
    • Invite users
    • Manage & delete users
  • Reports
  • Settings
    • Workspace
    • API Settings
    • Manage Subscription
    • Linked Accounts
  • Folders & Templates management
    • Manage Folders
    • Manage Templates
    • Share Templates & Folders
  • Profile & Account Security
  • Frequently Asked Questions (FAQs)
  • Developers
    • API Overview
    • Templates API
    • Folders API
  • Updates
    • Scheduled Downtime Notification
Powered by GitBook
On this page
  • Deprecation notice ❗️
  • Get list of Folders
  • Create a new Folder

Was this helpful?

  1. Developers

Folders API

PreviousTemplates APINextScheduled Downtime Notification

Last updated 1 year ago

Was this helpful?

Deprecation notice ❗️

Below APIs are deprecated and new version of APIs are available at

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

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"
    }
}

https://dashboard.docupilot.app/api-docs/swagger-ui/