- Deployed on Heroku.
- Website Link: https://phone-book980-yv.herokuapp.com/
-
GET /api/contacts: : Get all the contacts stored in database
-
POST /api/contacts: : Create a new contact in database
Required: Json should be sent along with this post request which will contain details of contact
Example:
{
"name" : "yash",
"dob" : "1/2/1999",
"phoneNumbers" : ["9283898999"],
"emails" : ["yash1234@gmail.com"]
}
-
PATCH /api/contacts/:contactId : Edit or Update specific contact usign contactId
Required: Json
Example:
{
"name" : "yash",
"dob" : "1/2/1999",
"phoneNumbers" : ["9283898999"],
"emails" : ["yash1234@gmail.com"]
}
-
DELETE /api/contacts/:contactId : Delete specific contact using ContactId
-
GET /api/find/contacts/:contactName : Find specific contact in database using name of person
-
GET /api/contacts/:contactId : Find specific contact using contactId
- Nodejs
- Express
- MongoDb
- Angular
- Bootstrap
- HTML/SASS
- Typescript