When creating a folder, only a Folder Name and Business Unit Id are required. The Business Unit Id is only used to control access to maintain the folder definition
- it does not affect user access on a contract.
Sort order is optional - folders are sorted in the UI by Sort Order if specified, with remaining folders sorted in alphabetic order.
mutation createFolder ($docfolderInput: CreateDocumentFolderInput!)
{
createDocumentFolder (createDocumentFolderInput: $docfolderInput) {
documentFolderId
warnings {
code
message
}
}
}
With parameter variables
{
"docfolderInput": {
"folderName": {string},
"folderDescription": {string?},
"folderTag": {string?},
"sortOrder": {int?},
"businessUnitId": {int}
}
}