Hello and welcome to my Phonebook backend application.
To interact with the entire application, you will need to use Postman or Visual Studio Code REST Client Plugin.
You may send GET requests to:
- /
- /info
- /api/persons
- /api/persons/:id
You may send DELETE requests to:
You may send POST requests as JSON to:
- /api/persons
example:
{
"name": "Hello world",
"number": "9876543"
}