description: To delete a vector database, send a DELETE request to `/v2/vector-databases/{id}`.
Deleting a vector database is irreversible and destroys the underlying instance
along with its data.
operationId: vectorDatabases_delete
parameters:
- description: ID of the vector database.
example: '"example string"'
in: path
name: id
required: true
schema:
type: string
responses:
"204":
description: A successful response.
headers:
ratelimit-limit:
$ref: ../../shared/headers.yml#/ratelimit-limit
ratelimit-remaining:
$ref: ../../shared/headers.yml#/ratelimit-remaining
ratelimit-reset:
$ref: ../../shared/headers.yml#/ratelimit-reset
"401":
$ref: ../../shared/responses/unauthorized.yml
"404":
$ref: ../../shared/responses/not_found.yml
"429":
$ref: ../../shared/responses/too_many_requests.yml
"500":
$ref: ../../shared/responses/server_error.yml
default:
$ref: ../../shared/responses/unexpected_error.yml
security:
- bearer_auth:
- database:delete
summary: Delete a Vector Database
tags:
- Vector Databases
x-codeSamples:
- $ref: examples/curl/vector_databases_delete.yml