ApiKeyIntrospection
Responds with information about the API key used for auth. This endpoint is mainly for debugging purposes.
Responses
- 200
Ok
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- uid string
- type string
Possible values: [
account
,user
] - scopes string[]
Scopes for this key
- golden boolean
Indicates whether the token is valid, if this value is
false
, access should not be given to anything - expired boolean
- dbKey string
- aid string
{
"uid": "string",
"type": "account",
"scopes": [
"string"
],
"golden": true,
"expired": true,
"dbKey": "string",
"aid": "string"
}
Loading...