/api/folder/update
var data = {
"folderId": "KMUFMKTBHINM4",
"newName": "New Name",
"newDescription": "New Description",
"newColor": "red"
};
var requestOptions = {
method: 'POST',
body: JSON.stringify(data),
redirect: 'follow'
};
fetch("http://localhost:41595/api/folder/update", requestOptions)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));Last updated