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 |
Body Example
{
"Nodes": [
{
"Path": "string"
}
],
"Recursive": true
}
Response Example (200)
Response Type /definitions/restDeleteNodesResponse
{
"DeleteJobs": [
{
"Label": "string",
"NodeUuid": "string",
"Uuid": "string"
}
]
}