Returns information about who the user is and what workspaces they are a member
GET/api/v2/whoami
Returns information about who the user is and what workspaces they are a member
Request
Responses
- 200
- 500
A list of all the users
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
authMethod string
subjectKind string
username string
wayfinderGroups string[]
workspaceGroups
object
property name*
string[]
string
workspaces string[]
{
"authMethod": "string",
"subjectKind": "string",
"username": "string",
"wayfinderGroups": [
"string"
],
"workspaceGroups": {},
"workspaces": [
"string"
]
}
A generic API error containing the cause of the error
- application/json
- Schema
- Example (from schema)
Schema
code int32required
detail stringrequired
message stringrequired
uri stringrequired
verb stringrequired
{
"code": 0,
"detail": "string",
"message": "string",
"uri": "string",
"verb": "string"
}
Loading...