const res = await fetch(url, {
method: "POST",
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
content: "hello is this a canned response?"
})
})
// response
const data = await res.json()
console.log(data.result)