| URL | Method | Operation |
|---|---|---|
| /posts | POST | Create a new post |
| /posts | GET | Fetch all posts |
| /posts/14 | GET | Fetch post 14 |
| /posts/15 | PUT | Update post 15 |
| /posts/18 | DELETE | Delete post 18 |
| URL | Method | Operation |
|---|---|---|
| / | POST | Create a record |
| / | GET | Fetch all records |
| //:id | GET | Fetch record with given id |
| //:id | PUT | Update record with given id |
| //:id | DELETE | Delete record with given id |
| URL | Method | Operation |
|---|---|---|
| /users | POST | Create a new user |
| /users | GET | Fetch a list of all users |
| /users/23 | GET | Fetch details on user with ID 23 |
| /users/23 | PUT | Update details on user with ID 23 |
| /users/23 | DELETE | Delete user with ID 23 |
| URL | Method | Operation |
|---|---|---|
| /users/23/posts | POST | Create a post associated with User 23 |
| /users/23/posts | GET | Fetch all posts created by User 23 |
| /users/23/posts/14 | GET | Fetch post 14 created by User 23 |
| /users/23/posts/15 | PUT | Update post 15 created by User 23 |
| /users/23/posts/18 | DELETE | Delete post 18 created by User 23 |