Get raw post request body?

Hello

Is it possible to get raw post request body from custom event?
I faced an issue with paypal webhook verification which needs exact the same request body to be sent back to paypal to verify it, but it seems like inside req.args there is different order of keys than in the original request

Hello,

I believe you would not be able to accomplish it with a custom event. However, instead, if you create an API Service with a single argument (use JS for that), it would contain the entire body.

Regards,
Mark

Thanks, it seems to work fine when i make request from backendless console and from my local machine with curl, but request from paypal somehow does not reach my service, although it reaches custom events with no problem.