const response = await fetch('https://www.taskade.com/api/v1/projects/{projectId}/tasks/{taskId}/assignees', {
method: 'PUT',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"handles": [
null
]
}),
});
const data = await response.json();