Codeceptjs REST helper: Viewing the request payload/body

Hi there,
I am using the REST helper for my automation in codeceptjs.
At some point, I have a button to click which will make a post request call and will send data to the backend (request payload). Is there any way I can see/read this request payload/body of the data being sent?

I do not wish to send a different test data. I just need to read whatever is being sent by the application.

Thank you.

Hey @Automation_newbie I guess you can read the request payload in the returned response. Try to print the response.

Thanks @peterngtr for your answer. I am not getting the request payload in the response of this postRequest. But I found another way of doing it. I am getting the data that I need from another getRequest call.