Any idea how to send a raw JSON response (e.g., {"message":"..."}
) directly as a webhook response, without the statusCode
, headers
, body
wrapper, as required by some providers?
Need to send this:
{
“message”: “lorem ipsum”
}
But in activepieces Webhook repsonse modul send this:
{
“statusCode”: 200,
“headers”: {
“Content-Type”: “application/json”
},
“body”: “{"message":"lorem ipsum”}"
}