v1

latestOpenAPI 3.0.12026-07-26331033.7 KB
Integrations

Create Webhook Integration

Create a new webhook integration for a form. Requires manage-integrations ability.

post/open/forms/{form}/integrations

Path parameters

formnumber required

The ID of the form.

Request body

integration_id'webhook' required

Must be "webhook"

status'active' | 'inactive'

The initial status of the webhook

Response

Webhook created successfully

messagestring

Example response

{
  "message": "Form Integration was created.",
  "form_integration": {
    "integration_id": "webhook",
    "data": {
      "webhook_url": "https://example.com/opnform-hook"
    }
  }
}