I m using lumen api 5.6. This is my route $router->PUT('collections/{collectionId}' In postman i m calling this api like this.
and this is the body of that request
See here i have CollectioPoints here but its failing in validation. the data i m sending through formdata is not able to recognized in validation.
But if i send the route from put to post [$router->POST('collections/{collectionId}'], all the data i m sending through form data are recognized and i m getting correct response as below
Why this is happening. Cant i send form data through put request? Thaank you.