From 535b659280b8f73d2a90f08ec7ef79220e273bdb Mon Sep 17 00:00:00 2001 From: Yevhen Pavliuk Date: Sun, 2 Nov 2014 13:49:32 +0200 Subject: [PATCH] Replace UPDATE with PUT in the quick tips I suppose you meant PUT there. --- lessons/restquicktips.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/restquicktips.html b/lessons/restquicktips.html index 7029006..79ab950 100644 --- a/lessons/restquicktips.html +++ b/lessons/restquicktips.html @@ -93,7 +93,7 @@
201 CREATED
Successful creation occurred (via either POST or PUT). Set the Location header to contain a link to the newly-created resource (on POST). Response body content may or may not be present.
204 NO CONTENT
-
Indicates success but nothing is in the response body, often used for DELETE and UPDATE operations.
+
Indicates success but nothing is in the response body, often used for DELETE and PUT operations.
400 BAD REQUEST
General error when fulfilling the request would cause an invalid state. Domain validation errors, missing data, etc. are some examples.
401 UNAUTHORIZED