HTTP verbs
RESTful notes tries to adhere as closely as possible to standard HTTP and REST conventions in its use of HTTP verbs.
| Verb | Usage |
|---|---|
| GET | Used to retrieve a resource. |
| HEAD | Used to check a resource. |
| POST | Used to create a new resource. |
| PATCH | Used to update an existing resource, including partial updates. |
| DELETE | Used to delete an existing resource. |