DELETE
/
extractions
/
{id}
curl --request DELETE \
  --url 'https://api.withflora.io/v1/extractions/4a81beae-3737-4a49-aa4d-466011527a6e' \
  --header 'Authorization: Bearer YOUR_FLORA_API_KEY'
{
  "status": true,
  "message": "Extraction deleted successfully",
  "data": {}
}

Delete Extraction

Delete an extraction by its ID. This action cannot be undone.

API Request

DELETE https://api.withflora.io/v1/extractions/{id}

Headers

Authorization
required

Bearer YOUR_FLORA_API_KEY

Path Parameters

id
string
required

The unique identifier of the extraction to delete

Response

status
boolean

Indicates if the request was successful

message
string

A message describing the result

data
object

Empty object indicating successful deletion

curl --request DELETE \
  --url 'https://api.withflora.io/v1/extractions/4a81beae-3737-4a49-aa4d-466011527a6e' \
  --header 'Authorization: Bearer YOUR_FLORA_API_KEY'
{
  "status": true,
  "message": "Extraction deleted successfully",
  "data": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
Example:

"2de3fab1-7950-4810-8bd6-7d92f72a4d43"

Response

200
application/json
200
data
object
message
string
Example:

"Extraction deleted successfully"

status
boolean
Example:

true