curl -X DELETE 'https://api.opnform.com/open/forms/123/integrations/42' \
-H 'Authorization: Bearer YOUR_PAT'
{
"message": "Form Integration was deleted."
}
Integrations
Delete Webhook Integration
Delete a webhook integration. Requires manage-integrations ability.
DELETE
/
open
/
forms
/
{form}
/
integrations
/
{integrationid}
curl -X DELETE 'https://api.opnform.com/open/forms/123/integrations/42' \
-H 'Authorization: Bearer YOUR_PAT'
{
"message": "Form Integration was deleted."
}
Delete Webhook Integration
Remove a webhook integration from a form.Authentication & Scope
This endpoint requires a Personal Access Token with themanage-integrations ability.
Request
number
required
The ID of the form containing the webhook.
number
required
The ID of the webhook integration to delete.
DELETE /open/forms/{form}/integrations/{integrationid} HTTP/1.1
Host: api.opnform.com
Authorization: Bearer <token>
curl -X DELETE 'https://api.opnform.com/open/forms/123/integrations/42' \
-H 'Authorization: Bearer YOUR_PAT'
Response
200 OK – Webhook deleted successfully.
{
"message": "Form Integration was deleted."
}
403 Forbidden – The token does not have manage-integrations ability or insufficient form permissions.
404 Not Found – Form or integration not found.Was this page helpful?