From 4ecc7fdf5f0c873ef2fabc3e15a8f2ad3dce0c21 Mon Sep 17 00:00:00 2001 From: Will Norris Date: Fri, 14 Apr 2023 11:32:09 -0700 Subject: [PATCH] api.md: update example auth key value example was missing the "-auth" type in the key prefix, which all new keys now contain. Also update key ID to match the full key, and fix indenting of closing braces. Signed-off-by: Will Norris --- api.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api.md b/api.md index 13e802778..670f54d5b 100644 --- a/api.md +++ b/api.md @@ -1336,8 +1336,8 @@ It holds the capabilities specified in the request and can no longer be retrieve ``` jsonc { - "id": "XXXX456CNTRL", - "key": "tskey-k123456CNTRL-abcdefghijklmnopqrstuvwxyz", + "id": "k123456CNTRL", + "key": "tskey-auth-k123456CNTRL-abcdefghijklmnopqrstuvwxyz", "created": "2021-12-09T23:22:39Z", "expires": "2022-03-09T23:22:39Z", "revoked": "2022-03-12T23:22:39Z", @@ -1348,9 +1348,9 @@ It holds the capabilities specified in the request and can no longer be retrieve "ephemeral": false, "preauthorized": false, "tags": [ "tag:example" ] - } } } + } } ```