From 0a23299878056f88d61527a88bcce9788379cb5b Mon Sep 17 00:00:00 2001 From: Jack Baldry Date: Mon, 30 May 2022 13:02:04 +0100 Subject: [PATCH] Fix typo in curl command (#46729) * Fix typo in curl command Co-authored-by: eleijonmarck Signed-off-by: Jack Baldry * Fix typo in another curl command Co-authored-by: eleijonmarck Signed-off-by: Jack Baldry Co-authored-by: eleijonmarck --- docs/sources/developers/http_api/auth.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sources/developers/http_api/auth.md b/docs/sources/developers/http_api/auth.md index 1783e53f6e5..7c21243e497 100644 --- a/docs/sources/developers/http_api/auth.md +++ b/docs/sources/developers/http_api/auth.md @@ -49,7 +49,7 @@ standard basic auth. Basic auth will also authenticate LDAP users. curl example: ```bash -?curl http://admin:admin@localhost:3000/api/org +curl http://admin:admin@localhost:3000/api/org {"id":1,"name":"Main Org."} ``` @@ -76,7 +76,7 @@ The API Token can also be passed as a Basic authorization password with the spec curl example: ```bash -?curl http://api_key:eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk@localhost:3000/api/org +curl http://api_key:eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk@localhost:3000/api/org {"id":1,"name":"Main Org."} ```