Back to Developer Roadmap

Proper HTTP Methods

src/data/best-practices/api-security/content/proper-http-methods.md

4.0285 B
Original Source

Proper HTTP Methods

Use the proper HTTP method according to the operation: GET (read), POST (create), PUT/PATCH (replace/update), and DELETE (to delete a record), and respond with 405 Method Not Allowed if the requested method isn't appropriate for the requested resource.