Creates a new child folder within a parent folder Returns ()
Create new Folder in the designated Folder.
| Name | Description |
|---|---|
| parentFolder | The parent folder where the new folder will be created |
| commonName | The name for the new folder |
Example in C#
// Returns: FolderInfo
var folderInfo = await client.AddChildFolderAsync(FolderInfo parentFolder, String commonName);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/folders \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TOKEN_GOES_HERE'
-d '"FOLDER NAME HERE"'