This is a function app project to create a REST style API using Azure FunctionApps.
| Function | REST verb & route |
|---|---|
| CreateContact | POST api/contact |
| GetContacts | GET api/contact |
| GetContactById | GET api/contact/{id} |
| UpdateContact | PUT api/contact/{id} |
| DeleteContact | DELETE api/contact/{id} |