After creating the webhook, when I fill in a form it sends a POST request to my API, but the body comes empty.
I can not find anything on the internet, the SM documentation leaves much to be desired.
My API
async testWebhook({ request, response }) {
console.log('request.body', request.body)
response.status(200).send()
return
}
What can it be?