const response = await fetch('https://www.taskade.com/api/v1/projects/from-template', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"folderId": "text",
"templateId": "text"
}),
});
const data = await response.json();