Non-destructive delete of a run
curl --request DELETE \
--url https://{tenant}-api.mathfi.ai/api/v1/feature-refinery/{featureRefinementKey} \
--header 'Authorization: Bearer <token>'import requests
url = "https://{tenant}-api.mathfi.ai/api/v1/feature-refinery/{featureRefinementKey}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)Feature Refinery
Non-destructive delete of a run
A non-destructive delete.
- The run leaves your run list and its name is freed for reuse.
- Its data and result files are kept. You can still download them by key.
- Allowed only when the run is not in flight: terminal, or never started.
- A running run returns
409. Cancel it first, then delete once it reachesCANCELLED. - Idempotent. Deleting an already-deleted run also returns
204.
DELETE
/
api
/
v1
/
feature-refinery
/
{featureRefinementKey}
Non-destructive delete of a run
curl --request DELETE \
--url https://{tenant}-api.mathfi.ai/api/v1/feature-refinery/{featureRefinementKey} \
--header 'Authorization: Bearer <token>'import requests
url = "https://{tenant}-api.mathfi.ai/api/v1/feature-refinery/{featureRefinementKey}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)