const response = await fetch('/createTask', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"clientKey": "text",
"task": {
"websiteURL": "text",
"websiteKey": "text"
}
}),
});
const data = await response.json();