hi
I like to move my stripe-webhook to mongodb. Currently I have a nodejs server where I can get the raw body from the request like (because stripe needs the raw request body)
app.post(’/webhook’, bodyParser.raw({ type: ‘application/json’ }), (request, response)
Is it possible to get the raw body request somehow in a mongodb webhook?
thx