POST
/
projects
/
{projectName}
/
collections
/
{collectionName}
/
docs
/
delete
curl --request POST \
  --url https://{baseUrl}/projects/{projectName}/collections/{collectionName}/docs/delete \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "ids": [
    "example-doc-id-1",
    "example-doc-id-2"
  ]
}'
{
  "message": "Delete request is accepted"
}

Authorizations

x-api-key
string
header
required

Project API Key.

Path Parameters

projectName
string
required

Project name.

collectionName
string
required

Collection name.

Body

application/json

Response

202
application/json

Delete request accepted.

The response is of type object.