Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 484 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 484 Bytes

Week-8-Day-3

Creating apis

Day 37 - Producing APIs

Today:

  • 1 million cups
  • Web Api

Assignment

Create a web aspi app that allows a client to list all Posts via an API.

  • GET /posts to return all posts
  • GET /posts/:id gives details of a post
  • POST /posts creates a post
  • PUT /posts/:id updates a post
  • DELETE /posts/:id deletes a post

Test your apps using Fiddler 2