POST /a/tree/delete
Handle nodes deletion
Body Parameters
Name | Description | Type | Required |
---|---|---|---|
Nodes | List of nodes to delete | array | |
Recursive | Whether to delete all the children if node is a folder | boolean | |
RemovePermanently | Force permanent deletion even if a recycle bin is defined | boolean |
Body Example
{
"Nodes": [
{
"Path": "string"
}
],
"Recursive": true,
"RemovePermanently": true
}
Response Example (200)
Response Type /definitions/restDeleteNodesResponse
{
"DeleteJobs": [
{
"Label": "string",
"NodeUuid": "string",
"Uuid": "string"
}
]
}