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

# Subscribe Zapier to pipeline-run events

> Registers a workspace-level PIPELINE_RUN_EVENT webhook that fires on every run.



## OpenAPI

````yaml /api-reference/openapi.json post /webhooks/zapier/pipeline-run-events/subscribe
openapi: 3.0.3
info:
  title: FileFeed API
  version: '2026-05-25'
  description: >-
    Official FileFeed REST API for connections, pipelines, schemas, pipeline
    runs, webhooks, outbound uploads, documents, files, and notifications.
    Date-based API versioning is controlled by the `FileFeed-Version` request
    header (default `2024-09-01`; latest `2026-05-25`); this document describes
    the `2026-05-25` shape.
servers:
  - url: https://api.sftpsync.io
security:
  - ApiKeyAuth: []
tags:
  - name: Connections
  - name: Pipelines
  - name: Schemas
  - name: Pipeline Runs
  - name: Webhooks
  - name: Outbound Uploads
  - name: Documents
  - name: Files
  - name: Notifications
  - name: Clients (deprecated)
paths:
  /webhooks/zapier/pipeline-run-events/subscribe:
    post:
      tags:
        - Webhooks
      summary: Subscribe Zapier to pipeline-run events
      description: >-
        Registers a workspace-level PIPELINE_RUN_EVENT webhook that fires on
        every run.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                targetUrl:
                  type: string
                  format: uri
              required:
                - targetUrl
      responses:
        '200':
          description: Subscription
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ZapierPipelineRunSubscription'
components:
  schemas:
    ZapierPipelineRunSubscription:
      type: object
      properties:
        id:
          type: string
        targetUrl:
          type: string
          format: uri
      required:
        - id
        - targetUrl
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````