You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/external-actor-gateway-service/openapi.yaml
+79Lines changed: 79 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2381,6 +2381,85 @@ webhooks:
2381
2381
additionalProperties: false
2382
2382
description: Triggered when a page version is published. The webhook payload contains details about the published page version including page ID, version ID, and publishing timestamp.
2383
2383
required: true
2384
+
formSubmitted:
2385
+
post:
2386
+
description: Triggered when a form is submitted. The webhook payload contains details about the submitted form including form ID, submission ID, and submission timestamp.
2387
+
responses:
2388
+
"200":
2389
+
description: Webhook received successfully
2390
+
summary: Form Submitted
2391
+
tags:
2392
+
- Webhooks
2393
+
requestBody:
2394
+
content:
2395
+
application/json:
2396
+
schema:
2397
+
type: object
2398
+
properties:
2399
+
eventId:
2400
+
description: Unique identifier for this event
2401
+
examples:
2402
+
- evt_01j5k9m7n8p9q2r3s4t5v6w7x8
2403
+
type: string
2404
+
tenantId:
2405
+
description: Tenant identifier for the event
2406
+
examples:
2407
+
- tenant_01j5k9m7n8p9q2r3s4t5v6w7x8
2408
+
type: string
2409
+
timestamp:
2410
+
description: Timestamp when the event was processed
description: Triggered when a form is submitted. The webhook payload contains details about the submitted form including form ID, submission ID, and submission timestamp.
0 commit comments