summaryrefslogtreecommitdiff
path: root/doc/api/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/README.md')
-rw-r--r--doc/api/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/README.md b/doc/api/README.md
index 8004a00659c..d47e537debc 100644
--- a/doc/api/README.md
+++ b/doc/api/README.md
@@ -357,13 +357,13 @@ follows:
## Bad request
-When you try to access API URL that does not exist you will receive 400 Bad Request.
+When you try to access API URL that does not exist you will receive 404 Not Found.
```
-HTTP/1.1 400 Bad Request
+HTTP/1.1 404 Not Found
Content-Type: application/json
{
- "error": "400 Bad Request"
+ "error": "404 Not Found"
}
```