From 6c821369536d1a838deea7eb716bd11f479dacc5 Mon Sep 17 00:00:00 2001 From: Jason Axelson Date: Sat, 25 Oct 2025 14:17:47 -1000 Subject: [PATCH] Clarify API endpoint path requirement Added note about trailing slash in API endpoint. This tripped me up because I didn't expect it (many/most other API's I've used don't include a trailing `/` in paths) --- docs/api/rest.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/api/rest.md b/docs/api/rest.md index 015e777b488..80bdc09d532 100644 --- a/docs/api/rest.md +++ b/docs/api/rest.md @@ -79,6 +79,8 @@ curl \ -H "Content-Type: application/json" http://localhost:8123/api/ ``` +Note: make sure you include the trailing `/`, the full path is `/api/`, NOT `/api` +