AkiVaMu Just tiny things come to mind...

Posts related to REST


HTTP methods: GET, POST, PUT, PATCH, DELETE

POST: create a new resource

POST /users
{
    "name": "Alice",
    "age": 20
}
more...