Permanently delete a dimension and detach it from every agent on the project (also clears extracted values for that dimension). Returns 204 on success. Returns 404 if the dimension does not exist on this project.
ApiKeyAuth — apiKey — in X-API-Key header. API key with pw_live_ prefix.
Python example
importosimportrequestsAPI_KEY=os.environ["PARSEWISE_API_KEY"]BASE_URL="https://api.parsewise.ai/api/v1"dimension_id="<uuid>"project_id="<uuid>"resp=requests.delete(f"{BASE_URL}/projects/{project_id}/dimensions/{dimension_id}/",headers={"X-API-Key":API_KEY},)resp.raise_for_status()print(resp.status_code)# DELETE returns no body