Problems POST with json in Body

Describe the bug
When try send post the postman response this “Unexpected character encountered while parsing
value: {. Path ‘’, line 1, position 1.”

BUT: WHEN I SEND THE GETS, WORKS ALL RIGTH,

now im try post, and after y try the put and delete protocols

To Reproduce
in screenshots

Expected behavior
send a post

Screenshots
Codigo de la API

Configuracion del POST

CodeSnippets

App information (please complete the following information):

  • App Type: ApiRest
  • Postman Version:
    Postman for Windows
    Version 7.3.4
    win32 10.0.17763 / x64
  • OS: Windows 10 Pro

Hi @sirwike,

On why you cannot see the error on a GET request, that is because content in the “body” is not part of a GET request, API’s don’t generally consider or validate the body of a GET request as the endpoint is built for providing a response and not processing or accepting data whereas a POST endpoint is built for accepting “body” data, processing data and sending back a response.

With regards to the error, its possible you have copied "(Double Quotes) from a text instead of ", I would suggest you manually enter the double quotes between the text again and test it out.