Index::Delete
Index::Delete
- application/json
Request Body required
- name string
Responses
- 200
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
- object
{}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
- code int32
- message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
POST /index/delete
Request
Request
curl / cURL
curl -L -X POST 'https://infrawhispers.github.io/index/delete' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"name": "string"
}'
python / requests
curl -L -X POST 'https://infrawhispers.github.io/index/delete' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"name": "string"
}'
go / native
curl -L -X POST 'https://infrawhispers.github.io/index/delete' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"name": "string"
}'
nodejs / axios
curl -L -X POST 'https://infrawhispers.github.io/index/delete' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"name": "string"
}'