From c5a059743bcf34beca7ff7e306f7c8e35dd46de0 Mon Sep 17 00:00:00 2001 From: Raja Nadar Date: Tue, 10 Jan 2017 23:19:49 -0800 Subject: [PATCH] fix lookup-self response json reflect the true 0.6.4 response. --- website/source/docs/auth/token.html.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/website/source/docs/auth/token.html.md b/website/source/docs/auth/token.html.md index d13e0f2034..404016493b 100644 --- a/website/source/docs/auth/token.html.md +++ b/website/source/docs/auth/token.html.md @@ -358,12 +358,19 @@ of the header should be "X-Vault-Token" and the value should be the token. ```javascript { "data": { + "accessor": "REDACTED", + "creation_time": 1484093665, + "creation_ttl": 3600, + "display_name": "github-armon", + "explicit_max_ttl": 0, "id": "ClientToken", - "policies": ["web", "stage"], - "path": "auth/github/login", "meta": {"user": "armon", "organization": "hashicorp"}, - "display_name": "github-armon", - "num_uses": 0, + "num_uses": 0, + "orphan": true, + "path": "auth/github/login", + "policies": ["web", "stage"], + "renewable": true, + "ttl": 3655 } } ```