Created
June 8, 2020 15:46
-
-
Save swann44/f18e2df4f814147805834a7f2628bd6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GET https://http-practice.herokuapp.com/wilders | |
| GET https://http-practice.herokuapp.com/wilders?page=2&language=PHP | |
| POST https://http-practice.herokuapp.com/wilders | |
| Content-Type: application/x-www-form-urlencoded | |
| name=John%20Doe&language=C%23 | |
| POST https://http-practice.herokuapp.com/wilders | |
| Content-Type: application/json | |
| { | |
| "name": "Jane Smith", | |
| "language": "JavaScript" | |
| } | |
| GET https://http-practice.herokuapp.com/wilders/2654 | |
| PUT https://http-practice.herokuapp.com/wilders/2654 | |
| Content-Type: application/json | |
| { | |
| "name" : "Micheline Smith", | |
| "language" : "Java" | |
| } | |
| DELETE https://http-practice.herokuapp.com/wilders/2654 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment