I am making an API with PHP, and since it does not manage the parameters of the PUT, DELETE, etc. requests, I must obtain these parameters on my own.
The problem is that Postman sends extra information and for that reason my API cannot read the data:
---------------------------- 010861295089232960525118
Content-Disposition: form-data; name = "name"
My name and surname
---------------------------- 010861295089232960525118
Content-Disposition: form-data; name = "phone"
902948229
---------------------------- 010861295089232960525118--
What I want is to make Postman only send what the browser would send in a normal PUT request, with no extra information. Since when I test with other API test programs, it works perfectly.