List Form Integrations
Retrieve all integrations configured for a specific form.Authentication & Scope
This endpoint requires a Personal Access Token with themanage-integrations ability.
Request
The ID of the form for which to list integrations.
Response
200 OK – Returns an array of integration objects.
403 Forbidden – The token does not include the manage-integrations ability, or you don’t have permission to update this form.Authorizations
Personal Access Token
Path Parameters
The ID of the form.
Response
Successful
Unique identifier for the integration.
The ID of the associated form.
Type of integration (currently only "webhook" is exposed via API).
Example:
"webhook"
Whether the integration is active.
Available options:
active, inactive Integration-specific configuration. For webhooks, contains webhook_url.
Example:
{
"webhook_url": "https://example.com/opnform-hook"
}