From caaad684a410fecac7a73c4e5ef8325d6b252d08 Mon Sep 17 00:00:00 2001 From: netbja Date: Fri, 31 Dec 2021 11:25:12 +0100 Subject: [PATCH] Small syntax error No double quotes after password. --- docs/rest-api/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rest-api/authentication.md b/docs/rest-api/authentication.md index 1571f15fa..11b8cd6bf 100644 --- a/docs/rest-api/authentication.md +++ b/docs/rest-api/authentication.md @@ -42,7 +42,7 @@ $ curl -X POST \ https://netbox/api/users/tokens/provision/ \ --data '{ "username": "hankhill", - "password: "I<3C3H8", + "password": "I<3C3H8", }' ```