I'm using fastapi and python. Using a POST method to successfully return data. However, I need to return the request body of my post method to use for some business logic ideally before sending off the query to my database.
How do I go about doing this?
Currently trying return Request.json
but it's returning a hexedecmial value.