From 86801ff8e0fb699cb4f36acdca0570471fcc77b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81d=C3=A1m=20Kov=C3=A1cs?= Date: Thu, 27 Mar 2025 11:10:06 +0100 Subject: [PATCH] docs: sample requests --- sample.http | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sample.http diff --git a/sample.http b/sample.http new file mode 100644 index 0000000..3b89acd --- /dev/null +++ b/sample.http @@ -0,0 +1,22 @@ +GET http://localhost:8090/status + +### +POST http://localhost:8090/health +Content-Type: application/json + +{ + "name": "service5", + "healthy": true +} + +### +POST http://localhost:8090/health +Content-Type: application/json + +{ + "name": "service5", + "healthy": false +} + +### +GET http://localhost:8090/health?service=service1