Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 332 Bytes

folder.md

File metadata and controls

36 lines (24 loc) · 332 Bytes
FOLDER

Create a new folder

create(
	string <name>,
	int <parent-folder-id>
): FolderInformation

Delete a folder

delete(int <folder-id>): bool

Get a folder's subfolders

getSubFolderById(
	int <folder-id>
): FolderInformation[]

Get a folder

get(
	int <folder-id>
): FolderInformation