What are the HTTP methods and their meanings in REST APIs?
spaceto flip
GET: Retrieve data (read-only, safe, idempotent) POST: Create a new resource (not idempotent) PUT: Replace a resource entirely (idempotent) PATCH: Partially update a resource (idempotent) DELETE: Remove a resource (idempotent) HTTP status codes: 200 OK, 201 Created, 204 No Content, 400 Bad Request, 401 Unauthorized, 403 Forbidden, 404 Not Found, 429 Too Many Requests, 500 Server Error