From de3876b815c9f095f557fe8bd6ee7c22d842c974 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Tue, 11 May 2021 01:18:02 +0200 Subject: explicit error formatting variant in openapi spec --- support/doc/api/openapi.yaml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'support') diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 7316b0b58..1a0822c8f 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml @@ -39,12 +39,25 @@ info: The API uses standard HTTP status codes to indicate the success or failure of the API call. The body of the response will be JSON in the following - format. + formats. ``` { - "code": "unauthorized_request", // example inner error code - "error": "Token is invalid." // example exposed error message + "error": "Account not found" // error debug message + } + ``` + + Some errors benefit from a more detailed message: + ``` + { + "errors": { + "id": { // where 'id' is the name of the parameter concerned by the error. + "value": "a117eb-c6a9-4756-bb09-2a956239f", // value that triggered the error. + "msg": "Should have an valid id", // error debug message + "param": "id", + "location": "params" // 'params', 'body', 'header', 'query' or 'cookies' + } + } } ``` -- cgit v1.2.3