> ## Documentation Index
> Fetch the complete documentation index at: https://docs.opnform.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Form Integrations

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

# List Form Integrations

Retrieve all integrations configured for a specific form.

## Authentication & Scope

This endpoint requires a **Personal Access Token** with the `manage-integrations` ability.

## Request

<ParamField path="form" type="number" required>
  The ID of the form for which to list integrations.
</ParamField>

```http theme={null}
GET /open/forms/{form}/integrations HTTP/1.1
Host: api.opnform.com
Authorization: Bearer <token>
```

## Response

`200 OK` – Returns an array of integration objects.

<ResponseExample>
  ```json Success theme={null}
  [
    {
      "id": 42,
      "form_id": 123,
      "integration_id": "webhook",
      "status": "active",
      "data": {
        "webhook_url": "https://example.com/opnform-hook"
      }
    },
    {
      "id": 43,
      "form_id": 123,
      "integration_id": "webhook",
      "status": "inactive",
      "data": {
        "webhook_url": "https://old-endpoint.com/hook"
      }
    }
  ]
  ```
</ResponseExample>

`403 Forbidden` – The token does not include the `manage-integrations` ability, or you don't have permission to update this form.


## OpenAPI

````yaml get /open/forms/{form}/integrations
openapi: 3.0.1
info:
  title: OpnForm API
  description: API for interacting with OpnForm, primarily used for Zapier integration
  version: 1.0.0
servers:
  - url: https://api.opnform.com
security:
  - bearerAuth: []
tags:
  - name: Workspaces
    description: Create and manage workspaces.
  - name: Workspace Users
    description: Manage users within a workspace.
  - name: Forms
    description: Manage and retrieve forms.
  - name: Submissions
    description: Access and manage form submissions.
  - name: Integrations
    description: Manage form integrations (webhooks) via API.
  - name: Zapier
    description: Legacy endpoints for the Zapier integration.
paths:
  /open/forms/{form}/integrations:
    get:
      tags:
        - Integrations
      summary: List Form Integrations
      description: >-
        List all integrations configured for a form. Requires
        `manage-integrations` ability.
      parameters:
        - name: form
          in: path
          required: true
          schema:
            type: number
            description: The ID of the form.
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FormIntegration'
        '403':
          description: Forbidden – token lacks manage-integrations ability
        '404':
          description: Form not found
      security:
        - bearerAuth: []
components:
  schemas:
    FormIntegration:
      type: object
      properties:
        id:
          type: number
          description: Unique identifier for the integration.
          readOnly: true
        form_id:
          type: number
          description: The ID of the associated form.
          readOnly: true
        integration_id:
          type: string
          description: >-
            Type of integration exposed via API, including "webhook" and the
            provider-specific "make" integration.
          example: webhook
        status:
          type: string
          enum:
            - active
            - inactive
          description: Whether the integration is active.
        data:
          type: object
          description: >-
            Integration-specific configuration. For webhooks, contains
            webhook_url.
          example:
            webhook_url: https://example.com/opnform-hook
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Personal Access Token
      x-bearer-scopemap:
        workspaces-read: Read access to workspaces
        workspaces-write: Write access to workspaces
        workspace-users-read: Read access to workspace users
        workspace-users-write: Write access to workspace users
        forms-read: Read access to forms
        forms-write: Write access to forms
        manage-integrations: Manage form integrations (webhooks)

````