Forum Discussion
harikm007
05-26-2022Data Warehouse
If you have access to REST API, you can change parent folder of a dashboard and owner of a folder
- To change parent folder of dashboard:
Use the end point '/dashboards/{id}' and update the field 'parentFolder' with new folder id. (You will get folder id from the browser url when you click on a folder)
{
"parentFolder": "3f9153abcdb123f002d2f345f"
}
- To change owner of folder, use the end point '/folders/{id}'
-Hari