Postman Sending GET Request Instead of POST to Laravel API

I am encountering an issue while testing a Laravel POST API using Postman. Despite selecting the POST method in the dropdown menu in Postman, it appears that Postman is sending a GET request to the Laravel API. As a result, Laravel’s middleware is throwing an error indicating that the GET method is not supported.

Error Message:

Error: GET Method is not supported for this endpoint.
3 Likes

First action is to ensure everything is saved.

Second troubleshooting step is to check the console logs and check what Postman really sent.

Did it really send a GET request instead of the POST request that the screenshot is showing?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.