I've got problem: when I send post request to my symfony api, and I try to get $request->request, and dump it (using dd() helper), I get empty parameters array, and I have no idea why it happen.
I'm using Postman to test this api, and my example object looks like:
{
"day": "2018-10-13T08:50:45.802Z",
"songs": [
{
"title":"Song title",
"songType": 5,
"number": 237
}
]
}
And result is: result screenshot
Does anyone know how to get expected request?