Delete Collection
curl --request POST \
--url https://api.zeroentropy.dev/v1/collections/delete-collection \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"collection_name": "<string>"
}
'{
"message": "Success!"
}Collections
Delete Collection
Deletes a collection.
A 404 Not Found status code will be returned, if the provided collection name does not exist.
POST
/
collections
/
delete-collection
Delete Collection
curl --request POST \
--url https://api.zeroentropy.dev/v1/collections/delete-collection \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"collection_name": "<string>"
}
'{
"message": "Success!"
}Documentation Index
Fetch the complete documentation index at: https://docs.zeroentropy.dev/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Body
application/json
The name of the collection to delete.
Response
Successful Response
This string will always be "Success!". This may change in the future.
⌘I