We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491b411 commit 12ff858Copy full SHA for 12ff858
docs/rest-api/status-code.md
@@ -14,13 +14,14 @@ Most of the explanation on status code is provided in link below:
14
15
[Mozilla](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status)
16
17
+In many cases REST based frameworks tend to handle status codes.
18
19
Some status code to be considered are:
20
21
* `200` for generic successful response.
22
* `201` for creation of resources. Usually with `POST` request.
23
* `204` for successful request processing but no response content required.
- - Usually with `DELETE` and `PATCH` `PUT` request. `HEAD` can use another method where this can be used.
24
+ - Usually with `DELETE` and `PATCH` `PUT` request. `HEAD` can be another method where this can be used.
25
26
27
* `400` generic client issues.
0 commit comments