Manage outbound webhook subscriptions for the authenticated tenant.
Subscriptions are tenant-scoped. Only active subscriptions are returned
by list and retrieve. Deletion is permanent — the row is removed
from the DB and any associated delivery rows cascade.
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"id="<uuid>"resp=requests.delete(f"{BASE_URL}/webhooks/{id}/",headers={"X-API-Key":API_KEY},)resp.raise_for_status()print(resp.status_code)# DELETE returns no body