[solved] Plugin not using post method

I created a plugin and I added a GET method that pulls a list of information and a POST method that should add user information. The GET method works as expected. But the POST method doesn’t seem to be actually called.

All the questions to get information from the user are correct, the list of fields is confirmed, but when the POST method is expected to happen, the logs of the system show that the POST method was not called, and the plugin returns the following message:

"I'm sorry, but it seems there was an issue with processing your request. Let's try again. "

It be easier to help if you posted your OpenAPI spec file (or the relevant portion).

I found the issue. There was a mistake in the path of one of the endpoints.
One was missing “/api” in the path. That’s why it wasn’t able to reach the endpoint.

Thanks for the attention.