From a3e4dac5fb20f8dfc0857a252eef5219d5e0ec4c Mon Sep 17 00:00:00 2001 From: Pedro Lamas Date: Wed, 13 Mar 2024 14:32:59 +0000 Subject: [PATCH] docs: corrects canbus peripherals response example Signed-off-by: Pedro Lamas --- docs/web_api.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/web_api.md b/docs/web_api.md index 6bc5395..16984d5 100644 --- a/docs/web_api.md +++ b/docs/web_api.md @@ -2215,7 +2215,12 @@ GET /machine/peripherals/canbus?interface=can0 /// api-example-response ```json { - "can_uuids": ["11AABBCCDD"] + "can_uuids": [ + { + "uuid": "11AABBCCDD", + "application": "Klipper" + } + ] } ``` ///