Token review
deprecated
This endpoint has been deprecated and may be removed in future versions of the API.
Token Review attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.
application/json
Request Body required
apiVersion string required
Kubernetes API version
kind string required
kind of the API object
spec
token string required
access token
status
token review status
authenticated boolean required
is authenticated
user object
user info
Responses
- 200
ok
application/json
Schema
Example (from schema)
Schema
apiVersion string required
Kubernetes API version
kind string required
kind of the API object
spec
token string required
access token
status
token review status
authenticated boolean required
is authenticated
user object
user info
{
"apiVersion": "string",
"kind": "string",
"spec": {
"token": "string"
},
"status": {
"authenticated": true,
"user": {}
}
}
Loading...