PauboxApiClient you use to send email.
Python
Webhook client
Manage webhook endpoints with the Paubox Python SDK.
Webhook methods are on the same
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage webhook endpoints with the Paubox Python SDK.
PauboxApiClient you use to send email.
from paubox.paubox import PauboxApiClient
client = PauboxApiClient()
endpoints = client.list_webhook_endpoints()
endpoint = client.create_webhook_endpoint(
target_url="https://example.com/webhooks/paubox",
events=["inbound_mail_received", "api_mail_log_delivered"],
signing_key="whsec_abc123",
)
endpoint = client.get_webhook_endpoint(42)
endpoint = client.update_webhook_endpoint(42, active=False)
endpoint = client.delete_webhook_endpoint(42)