Create Doc Folder

Create a folder for organizing workspace docs. Pass `parentId` to nest the new folder under an existing one, or omit (or null) to create at the top level. Auto-suffixes the name on sibling collisions up to 100 attempts; beyond that returns 409.

POST/api/v1/docs/folders

Authorization

ApiKeyAuth

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST \  "https://tryrecall.com/api/v1/docs/folders" \  -H "X-API-Key: YOUR_API_KEY" \  -H "Content-Type: application/json" \  -d '{"workspaceId":"YOUR_WORKSPACE_ID","name":"Reports"}'
{
  "success": true,
  "data": {
    "folder": {
      "id": "string",
      "workspaceId": "string",
      "parentId": "string",
      "name": "string",
      "isSystem": true,
      "sortOrder": 0,
      "color": "string",
      "createdBy": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  }
}
Empty
Empty
Empty
Empty