# First, list indexes to confirm the target index existscurl -X GET "http://localhost:8000/v1/indexes/list" \ -H "X-API-Key: cyborg_your_api_key_here"# Then delete the specific indexcurl -X POST "http://localhost:8000/v1/indexes/delete" \ -H "X-API-Key: cyborg_your_api_key_here" \ -H "Content-Type: application/json" \ -d '{ "index_name": "old_index", "index_key": "your_64_character_hex_key_here" }'# Verify deletion by listing indexes againcurl -X GET "http://localhost:8000/v1/indexes/list" \ -H "X-API-Key: cyborg_your_api_key_here"