Skip to main content
Zoho sign
Zoho sign
Get folder list

This will fetch the list of folders in your account.

API Endpoint

GET https://sign.zoho.com/api/v1/folders

Request example

$ curl https://sign.zoho.com/api/v1/folders \
    --header 'Authorization: Zoho-oauthtoken 1000.03xxxxxxxxxxxxxxxxxa5317.dxxxxxxxxxxxxxxxxxfa' \

Response example

HTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
  "code": 0,
  "folders": [
    {
      "folder_name": "Quote Folder",
      "folder_id": "2000000495005"
    },
    {
      "folder_name": "NDA",
      "folder_id": "2000000489161"
    }
  ],
  "message": "Folder(s) retrieved successfully",
  "status": "success"
}
Request Demo