DELETE
/
api
/
v1
/
webhooks
/
{webhook_id}
# To use the Python SDK, install the package:
# pip install mem0ai

from mem0 import MemoryClient
client = MemoryClient(api_key="your_api_key", org_id="your_org_id", project_id="your_project_id")

# Delete a webhook
response = client.delete_webhook(webhook_id="your_webhook_id")
print(response)
{
  "message": "Webhook deleted successfully"
}

Delete Webhook

Delete a webhook by providing the webhook ID.

Authorizations

Authorization
string
header
required

API key authentication. Prefix your Mem0 API key with 'Token '. Example: 'Token your_api_key'

Path Parameters

webhook_id
string
required

Unique identifier of the webhook

Response

200
application/json
Webhook deleted successfully
message
string