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.
Custom HTTP headers to include with every delivery. Encrypted at rest. Up to 10 entries; values up to 1KB each; total ≤ 4KB. The Host, Connection, Content-Length, Transfer-Encoding, Content-Type and any Parsewise-* headers are reserved.
Validates create / update bodies. Not bound to the model.
Name
Required
Type
Description
name
No
string
Friendly name for this subscription (optional).
url
No
string
HTTPS URL Parsewise will POST webhook events to.
subscribed_events
No
array<string>
Event names this subscription should receive.
headers
No
object<string, string>
Custom HTTP headers to include with every delivery. Encrypted at rest. Up to 10 entries; values up to 1KB each; total ≤ 4KB. The Host, Connection, Content-Length, Transfer-Encoding, Content-Type and any Parsewise-* headers are reserved.
V1WebhookSubscription
Read-side serializer. Used by list / retrieve / create / update responses.
Name
Required
Type
Description
id
Yes
string (uuid)
name
Yes
string
url
Yes
string
subscribed_events
Yes
array<string>
Event names this subscription is subscribed to.
is_active
Yes
boolean
headers
Yes
object<string, string>
Custom request header keys registered for this subscription. Values are always redacted.