Drop Role
POST
http://${MILVUS_URI}/v2/vectordb/roles/drop
This operation drops an existing role. The operation will succeed if the specified role exists. Otherwise, this operation will fail.
Example
export MILVUS_URI="localhost:19530"
curl --location --request POST "http://${MILVUS_URI}/v2/vectordb/roles/drop" \
--header "Content-Type: application/json" \
--data-raw '{
"roleName": "readOnly"
}'
Possible response is similar to the following.
{
"code": 0,
"data": {}
}
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
The authentication token.No query parameters required
No path parameters required
Request Body
{
"roleName": "string"
}
Parameter | Description |
---|---|
roleName * | string The name of the role. |
Response
None
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.
|
message | string Indicates the possible reason for the reported error. |
data | object |