You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lambdas/service/openapi.json
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -900,6 +900,31 @@
900
900
]
901
901
}
902
902
},
903
+
"/error-503": {
904
+
"get": {
905
+
"responses": {
906
+
"400": {
907
+
"description": "Bad request. The request was rejected due to malformed parameters."
908
+
},
909
+
"429": {
910
+
"description": "Too many requests. \nWhen handling this response, clients should wait the number of seconds\nspecified in the `Retry-After` header and then retry the request.\n"
911
+
},
912
+
"500": {
913
+
"description": "Internal server error. An internal server error occurred."
914
+
},
915
+
"502": {
916
+
"description": "Bad gateway. The server received an invalid response from the upstream server."
917
+
},
918
+
"503": {
919
+
"description": "Service unavailable. \nWhen handling this response, clients should wait the number of seconds\nspecified in the `Retry-After` header and then retry the request.\n"
920
+
},
921
+
"504": {
922
+
"description": "Gateway timeout. The server did not respond in time. Please try again later."
923
+
}
924
+
},
925
+
"summary": "test endpoint for a 503 status response"
0 commit comments