Skip to main content
DELETE
/
api
/
dataframer
/
anonymization-runs
/
{run_id}
Delete an anonymization run
import requests

url = "https://df-api.dataframer.ai/api/dataframer/anonymization-runs/{run_id}/"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)

Authorizations

Authorization
string
header
required

API Key authentication. Format: "Bearer YOUR_API_KEY"

Path Parameters

run_id
string<uuid>
required

UUID of the anonymization run to delete.

Response

Anonymization run deleted