Skip to main content
POST
/
api
/
v1
/
user-extractions
/
bulk-delete
Bulk Delete Extractions
curl --request POST \
  --url https://api.example.com/api/v1/user-extractions/bulk-delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "extraction_ids": [
    "<string>"
  ]
}
'
{
  "success": true,
  "deleted_count": 123,
  "message": "<string>",
  "failed_ids": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://bavlio.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request model for bulk deleting extractions.

extraction_ids
string[]
required

List of extraction IDs to delete

Minimum array length: 1

Response

Successful Response

Response model for bulk delete operation.

success
boolean
required

Whether the operation was successful

deleted_count
integer
required

Number of extractions successfully deleted

message
string
required

Summary message

failed_ids
string[]

IDs that failed to delete