List Roles
POST
http://${MILVUS_URI}/v2/vectordb/roles/list
This operation lists the information about all existing roles.
Example
export MILVUS_URI="localhost:19530"
curl --location --request POST "http://${MILVUS_URI}/v2/vectordb/roles/list" \
--header "Content-Type: application/json" \
--data-raw '{}'
Possible response is similar to the following .
{
"code": 200,
"data": [
"admin",
"public"
]
}
Request
Parameters
Header parameters
Parameter Description Request-Timeout
integer
The timeout duration for this operation.
Setting this to None indicates that this operation timeouts when any response arrives or any error occurs.Authorization
string(required)
The authentication token.No query parameters required
No path parameters required
Request Body
{}
Parameter | Description |
---|
Response
A RoleInfo object that contains a list of RoleItem objects.
Response Bodies
- Response body if we process your request successfully
{
"code": "integer",
"data": [
{}
]
}
- Response body if we failed to process your request
{
"code": integer,
"message": string
}
Properties
The properties in the returned response are listed in the following table.
Property | Description |
---|---|
code | integer Indicates whether the request succeeds.
|
data | array |
data[] | string A list of item objects. |
message | string Indicates the possible reason for the reported error. |