4. Delete extraction
DELETE
/deleteExtraction
This endpoint enables the deletion of an entire extraction process, a specific batch within an extraction, or an individual file, depending on the parameters provided in the request body. The action is permanent and cannot be undone.
Providing only the
extractionId
results in the deletion of the entire extraction process along with all associated batches and files.Specifying both
extractionId
andbatchId
deletes the specified batch and all files within it from the extraction.Including
extractionId
,batchId
, andfileId
leads to the deletion of a specific file within a batch.
Postman Collection
For a complete and interactive set of API requests, please refer to our Postman Integrationcollection.
Server URL
Headers
Content-Type
application/json
Authorization
Bearer <token>
Body
extractionId
string
true
The extraction id
batchId
string
false
The batch id
fileId
string
false
The file id
Body Example
Code Example
Responses
Last updated