v1

latestOpenAPI 3.0.12026-07-26331033.7 KB
Integrations

List Form Integrations

List all integrations configured for a form. Requires manage-integrations ability.

get/open/forms/{form}/integrations

Path parameters

formnumber required

The ID of the form.

Response

Successful

idnumber

Unique identifier for the integration.

form_idnumber

The ID of the associated form.

integration_idstring

Type of integration (currently only "webhook" is exposed via API).

status'active' | 'inactive'

Whether the integration is active.

dataobject

Integration-specific configuration. For webhooks, contains webhook_url.

Example response

[
  {
    "integration_id": "webhook",
    "data": {
      "webhook_url": "https://example.com/opnform-hook"
    }
  }
]