1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-11 03:34:35 +00:00

feat: add api end point for delete folder

This commit is contained in:
2022-07-19 22:41:03 +05:00
parent 3e53f70928
commit 08e0c61e0f
3 changed files with 72 additions and 0 deletions

View File

@@ -963,6 +963,33 @@ paths:
schema:
type: string
example: /Public/somefolder
delete:
operationId: DeleteFolder
responses:
'200':
description: Ok
content:
application/json:
schema:
properties:
status: {type: string}
required:
- status
type: object
summary: 'Delete folder from SASjs Drive'
tags:
- Drive
security:
-
bearerAuth: []
parameters:
-
in: query
name: _folderPath
required: true
schema:
type: string
example: /Public/somefolder/
/SASjsApi/drive/filetree:
get:
operationId: GetFileTree