Web requests changed from GET to POST.

Previously in my project all requests were GET requests. But now developers changed those GET requests to POST, and now urls don’t have any query params in it.
All the query params are stored in RAW(txt) file due to which all the requests are failed(KO found 400, 401, 500).

Can anybody help me understanding query param passing in POST requests.
Thanks.