From 83dcb60e15691a7b6e0fa4356db81c97e793fb72 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Francisco Date: Wed, 15 Apr 2020 17:43:40 -0400 Subject: [PATCH] fix error code in README (#152) - --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 765bdce..ed8a967 100644 --- a/README.md +++ b/README.md @@ -754,7 +754,7 @@ For each endpoint explain: * Error Response, Most endpoints have many ways to fail. From unauthorized access to wrongful parameters etc. All of those should be listed here. It might seem repetitive, but it helps prevent assumptions from being made. For example ```json { - "code": 403, + "code": 401, "message" : "Authentication failed", "description" : "Invalid username or password" }