Skip to main content

Create Folder



Purpose 

To create a new folder.

HTTP Request URL

https://{zohoapis_domain}/writer/api/v1/folders

Body Parameters

ParameterData TypeDescription
Mandatory Parameter
folder_nameStringSpecify a name to the folder to be created.

Sample Request

Copiedcurl --location --request POST "https://www.zohoapis.com/writer/api/v1/folders" \
  --header "Authorization: Zoho-oauthtoken xxx.yyy.zzz" \
  --form "folder_name=zylkerFolder"

Sample Response

Copied{
  "created_time": "2019-02-27T11:18:03Z",
  "role": "OWNER",
  "modified_time_ms": 1551266283214,
  "parent_folder_id": "folder",
  "last_opened_time": "2019-02-27T11:18:03Z",
  "folder_name": "zylkerFolder",
  "is_favourite": false,
  "last_opened_time_ms": 1551266283214,
  "type": "folder",
  "created_by": "Amelia",
  "created_time_ms": 1551266283214,
  "modified_time": "2019-02-27T11:18:03Z",
  "creator_id": "1308724",
  "folder_id": "h36bcb4755c5d629c4c428982fcd3d752ea4d",
  "lastmodified_by": [
    {
      "email_id": "amelia@zylker.com",
      "profile_photo": "https://contacts.zoho.com/file?t=user&ID=1308724&fs=thumb",
      "user_id": "1308724",
      "display_name": "Amelia"
    }
  ],
  "status": "active"
}

Show full

Show less