Skip to content

Instantly share code, notes, and snippets.

@amoretspero
Created February 16, 2018 10:46
Show Gist options
  • Save amoretspero/245a35d583a29fde08673c47fd1e58a4 to your computer and use it in GitHub Desktop.
Save amoretspero/245a35d583a29fde08673c47fd1e58a4 to your computer and use it in GitHub Desktop.
GET http://myrestfulblog.io/articles # Gets List of articles.
GET http://myrestfulblog.io/articles/10 # Gets article No. 10.
POST http://myrestfulblog.io/articles/create # Create new article.
DELETE http://myrestfulblog.io/articles/3 # Deletes article No. 3.
PATCH http://myrestfulblog.io/articles/5 # Update article No. 5.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment