I want to delete my notebooks before the new deployment. This command works when I specified the folder and clear data inside:
curl --netrc --request POST \
https://dbc-a1b2345c-d6e7.cloud.databricks.com/api/2.0/workspace/delete \
--header 'Accept: application/json' \
--data '{ "path": "/Users/me@example.com/MyFolder", "recursive": true }'
โ
What should I put into Path parameter to delete all folders & notebooks from workspace ?
I tryied ''/'' and "" but it doesnt work.. :/โ