Drop Index
This operation deletes index from a specified collection.
The base URL for this API is in the following format:
http://localhost:19530
export CLUSTER_ENDPOINT="http://localhost:19530"The timeout duration for this operation. Setting this to None indicates that this operation timeouts when any response arrives or any error occurs.
The authentication token should be a pair of colon-joined username and password, like username:password.
The name of the database that to which the collection belongs . Setting this to a non-existing database results in an error.
The name of the target collection. Setting this to a non-existing collection results in an error.
The name of the target index.
export TOKEN="root:Milvus"
curl --request POST \--url "${CLUSTER_ENDPOINT}/v2/vectordb/indexes/drop" \--header "Request-Timeout: 0" \--header "Authorization: Bearer ${TOKEN}" \--header "Content-Type: application/json" \-d '{    "indexName": "my_vector",    "collectionName": "custom_setup_not_indexed"}'A success response
Response code.
Response payload which is an empty object.
A failure response.
Response code.
Error message.
{    "code": 0,    "data": {}}