From ee3f29da12e9ee556af12aadb893fb588fcfcbed Mon Sep 17 00:00:00 2001 From: Todd Fredrich Date: Fri, 20 Jan 2023 19:02:35 -0700 Subject: [PATCH] Fixed issue with HTTP Methods table re. PUT --- content/basics/httpmethods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/basics/httpmethods.md b/content/basics/httpmethods.md index 94830f7..df3d43f 100644 --- a/content/basics/httpmethods.md +++ b/content/basics/httpmethods.md @@ -12,7 +12,7 @@ Below is a table summarizing recommended return values of the primary HTTP metho | POST | Create | 201 (Created), 'Location' header with link to /customers/{id} containing new ID. | 404 (Not Found), 409 (Conflict) if resource already exists. | | GET | Read | 200 (OK), list of customers. Use pagination, sorting and filtering to navigate big lists. | 200 (OK), single customer. 404 (Not Found), if ID not found or invalid. | | PUT | Update/Replace | 405 (Method Not Allowed), unless you want to update/replace every resource in the entire collection. | 200 (OK) or 204 (No Content). 404 (Not Found), if ID not found or invalid. | -| PATCH | Update/Modify 405 (Method Not Allowed), unless you want to modify the collection itself. Which is possible if operating on the collection as a whole. | 200 (OK) or 204 (No Content). 404 (Not Found), if ID not found or invalid. | +| PATCH | Update/Modify | 405 (Method Not Allowed), unless you want to modify the collection itself. Which is possible if operating on the collection as a whole. | 200 (OK) or 204 (No Content). 404 (Not Found), if ID not found or invalid. | | DELETE | Delete | 405 (Method Not Allowed), unless you want to delete the whole collection—not often desirable. | 200 (OK). 404 (Not Found), if ID not found or invalid. | Below is a more-detailed discussion of the main HTTP methods.