Pipedream · Capability

Pipedream API - Webhooks

Pipedream API - Webhooks. 4 operations. Self-contained Naftiko capability covering one Pipedream business surface.

Pipedream API - Webhooks is a Naftiko capability published by Pipedream, one of 16 capabilities the APIs.io network indexes for this provider. It bundles 4 operations across the GET, PUT, DELETE, and POST methods rooted at /v1/connect/{…}/webhook.

The capability includes 1 read-only operation and 3 state-changing operations. Lead operation: Get Project Environment Webhook. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Pipedream and Webhooks.

Run with Naftiko PipedreamWebhooks

What You Can Do

GET
Retrieveprojectenvironmentwebhook — Get Project Environment Webhook
/v1/connect/{project_id}/webhook
PUT
Updateprojectenvironmentwebhook — Set Project Environment Webhook
/v1/connect/{project_id}/webhook
DELETE
Deleteprojectenvironmentwebhook — Delete Project Environment Webhook
/v1/connect/{project_id}/webhook
POST
Regenerateprojectenvironmentwebhooksigningkey — Regenerate Webhook Signing Key
/v1/connect/{project_id}/webhook/regenerate_signing_key

MCP Tools

retrieveprojectenvironmentwebhook

Get Project Environment Webhook

read-only idempotent
updateprojectenvironmentwebhook

Set Project Environment Webhook

idempotent
deleteprojectenvironmentwebhook

Delete Project Environment Webhook

idempotent
regenerateprojectenvironmentwebhooksigningkey

Regenerate Webhook Signing Key

Capability Spec

pipedream-connect-webhooks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pipedream API - Webhooks
  description: Pipedream API - Webhooks. 4 operations. Self-contained Naftiko capability covering one Pipedream business surface.
  tags:
  - Pipedream
  - Webhooks
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    PIPEDREAM_ACCESS_TOKEN: PIPEDREAM_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: pipedream-connect-webhooks
    baseUri: https://api.pipedream.com
    description: Pipedream API - Webhooks business capability. Self-contained, no shared references.
    resources:
    - name: v1-connect-project-id-webhook
      path: /v1/connect/{project_id}/webhook
      operations:
      - name: retrieveprojectenvironmentwebhook
        method: GET
        description: Get Project Environment Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
      - name: updateprojectenvironmentwebhook
        method: PUT
        description: Set Project Environment Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteprojectenvironmentwebhook
        method: DELETE
        description: Delete Project Environment Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
    - name: v1-connect-project-id-webhook-regenerate-signing-key
      path: /v1/connect/{project_id}/webhook/regenerate_signing_key
      operations:
      - name: regenerateprojectenvironmentwebhooksigningkey
        method: POST
        description: Regenerate Webhook Signing Key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.PIPEDREAM_ACCESS_TOKEN}}'
  exposes:
  - type: rest
    namespace: pipedream-connect-webhooks-rest
    port: 8080
    description: REST adapter for Pipedream API - Webhooks. One resource per consumed operation.
    resources:
    - path: /v1/connect/{project_id}/webhook
      name: v1-connect-project-id-webhook
      description: REST surface for v1-connect-project-id-webhook.
      operations:
      - method: GET
        name: retrieveprojectenvironmentwebhook
        description: Get Project Environment Webhook
        call: pipedream-connect-webhooks.retrieveprojectenvironmentwebhook
        with:
          x-pd-environment: rest.x-pd-environment
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateprojectenvironmentwebhook
        description: Set Project Environment Webhook
        call: pipedream-connect-webhooks.updateprojectenvironmentwebhook
        with:
          x-pd-environment: rest.x-pd-environment
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteprojectenvironmentwebhook
        description: Delete Project Environment Webhook
        call: pipedream-connect-webhooks.deleteprojectenvironmentwebhook
        with:
          x-pd-environment: rest.x-pd-environment
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connect/{project_id}/webhook/regenerate_signing_key
      name: v1-connect-project-id-webhook-regenerate-signing-key
      description: REST surface for v1-connect-project-id-webhook-regenerate-signing-key.
      operations:
      - method: POST
        name: regenerateprojectenvironmentwebhooksigningkey
        description: Regenerate Webhook Signing Key
        call: pipedream-connect-webhooks.regenerateprojectenvironmentwebhooksigningkey
        with:
          x-pd-environment: rest.x-pd-environment
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pipedream-connect-webhooks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pipedream API - Webhooks. One tool per consumed operation.
    tools:
    - name: retrieveprojectenvironmentwebhook
      description: Get Project Environment Webhook
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipedream-connect-webhooks.retrieveprojectenvironmentwebhook
      with:
        x-pd-environment: tools.x-pd-environment
      outputParameters:
      - type: object
        mapping: $.
    - name: updateprojectenvironmentwebhook
      description: Set Project Environment Webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: pipedream-connect-webhooks.updateprojectenvironmentwebhook
      with:
        x-pd-environment: tools.x-pd-environment
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: deleteprojectenvironmentwebhook
      description: Delete Project Environment Webhook
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: pipedream-connect-webhooks.deleteprojectenvironmentwebhook
      with:
        x-pd-environment: tools.x-pd-environment
      outputParameters:
      - type: object
        mapping: $.
    - name: regenerateprojectenvironmentwebhooksigningkey
      description: Regenerate Webhook Signing Key
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-webhooks.regenerateprojectenvironmentwebhooksigningkey
      with:
        x-pd-environment: tools.x-pd-environment
      outputParameters:
      - type: object
        mapping: $.