Skip to main content

Index::DeleteData

Deletes data from the given index based on the supplied ids

Request Body required
  • index_name string
  • ids string[]
Responses

A successful response.


Schema
  • object
POST /index/delete_data

Request

Body required
{
"index_name": "string",
"ids": [
"string"
]
}
curl / cURL
curl -L -X POST 'https://infrawhispers.github.io/index/delete_data' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"index_name": "string",
"ids": [
"string"
]
}'