rest-api-design
REST API Design
REST (Representational State Transfer) is the dominant API architectural style.
| Method | Action |
|---|---|
| GET | Read |
| POST | Create |
| PUT | Replace |
| PATCH | Update |
| DELETE | Delete |
See GraphQL · WebSockets · Web Technologies Hub.
REST (Representational State Transfer) is the dominant API architectural style.
| Method | Action |
|---|---|
| GET | Read |
| POST | Create |
| PUT | Replace |
| PATCH | Update |
| DELETE | Delete |
See GraphQL · WebSockets · Web Technologies Hub.