Get a user
GET/v2/users/:username
Get a user and view details like the email, username, and associated roles.
Request
Path Parameters
Specifies the user ID that to retrieve. Note that the username must be percent encoded.
Header Parameters
Possible values: >= 1
The API will make a best effort to complete the request in the specified seconds or time out.
Possible values: >= 1
The API will make a best effort to complete the request in the specified milliseconds or time out.
Responses
- 200
- 403
- 404
A user.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Possible values: Value must match regular expression usr_.+
The Vectara ID for the user.
The email address for the user.
The username for the user.
Indicates whether the user is enabled or disabled.
The description of the user.
When the user was created.
When a user property was last updated.
Possible values: [owner
, administrator
, billing_administrator
, corpus_administrator
]
The role names of the user.
api_policy object
What actions a principal can take on the Vectara platform.
The name of the API role.
allowed_operations objectrequired
Operations that are allowed by the API role. Each operation may only allow certain resources that are described by a resource path to resource value map. If the value is null, then the operation is allowed on any resource.
property name* ApiOperationPolicy
Policy to allow operations if only using the specified resource.
Default value: true
If any resource is allowed for the operation.
allowed_resources object
Object with keys of resource paths to a list of allowed resources. A resource path starts with either body, path, or implicit. A body or path resource is within the operation body, and an implicit resource is a resource implied by the request.
property name* string[]
string
{
"id": "string",
"email": "user@example.com",
"username": "string",
"enabled": true,
"description": "string",
"created_at": "2024-10-29T01:49:06.243Z",
"updated_at": "2024-10-29T01:49:06.243Z",
"api_roles": [
"owner"
],
"api_policy": {
"name": "string",
"allowed_operations": {}
}
}
Permissions do not allow retrieving the user.
- application/json
- Schema
- Example (from schema)
Schema
The messages describing why the error occurred.
The ID of the request that can be used to help Vectara support debug what went wrong.
{
"messages": [
"Internal server error."
],
"request_id": "string"
}
User not found.
- application/json
- Schema
- Example (from schema)
Schema
The ID cannot be found.
ID of the request that can be used to help Vectara support debug what went wrong.
{
"id": "string",
"messages": [
"string"
],
"request_id": "string"
}