PandaDoc · Capability

PandaDoc REST API — Webhook Events

PandaDoc REST API — Webhook Events. 2 operations. Lead operation: List Webhook Events. Self-contained Naftiko capability covering one Pandadoc business surface.

Run with Naftiko PandadocWebhook Events

What You Can Do

GET
Listwebhookevents — List Webhook Events
/v1/webhook-events
GET
Getwebhookevent — Get Webhook Event Details
/v1/webhook-events/{id}

MCP Tools

list-webhook-events

List Webhook Events

read-only idempotent
get-webhook-event-details

Get Webhook Event Details

read-only idempotent

Capability Spec

rest-webhook-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: PandaDoc REST API — Webhook Events
  description: 'PandaDoc REST API — Webhook Events. 2 operations. Lead operation: List Webhook Events. Self-contained Naftiko
    capability covering one Pandadoc business surface.'
  tags:
  - Pandadoc
  - Webhook Events
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PANDADOC_API_KEY: PANDADOC_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-webhook-events
    baseUri: https://api.pandadoc.com/public/v1
    description: PandaDoc REST API — Webhook Events business capability. Self-contained, no shared references.
    resources:
    - name: webhook-events
      path: /webhook-events
      operations:
      - name: listwebhookevents
        method: GET
        description: List Webhook Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: count
          in: query
          type: integer
          description: Number of results to return per page.
          required: true
        - name: page
          in: query
          type: integer
          description: Page number to retrieve.
          required: true
        - name: since
          in: query
          type: string
          description: Return events created on or after this timestamp.
        - name: to
          in: query
          type: string
          description: Return events created before this timestamp.
        - name: type
          in: query
          type: array
          description: Filter by event trigger type.
        - name: http_status_code
          in: query
          type: array
          description: Filter by HTTP response status code group.
    - name: webhook-events-id
      path: /webhook-events/{id}
      operations:
      - name: getwebhookevent
        method: GET
        description: Get Webhook Event Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier of the webhook event.
          required: true
    authentication:
      type: bearer
      token: '{{env.PANDADOC_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-webhook-events-rest
    port: 8080
    description: REST adapter for PandaDoc REST API — Webhook Events. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/webhook-events
      name: webhook-events
      description: REST surface for webhook-events.
      operations:
      - method: GET
        name: listwebhookevents
        description: List Webhook Events
        call: rest-webhook-events.listwebhookevents
        with:
          count: rest.count
          page: rest.page
          since: rest.since
          to: rest.to
          type: rest.type
          http_status_code: rest.http_status_code
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/webhook-events/{id}
      name: webhook-events-id
      description: REST surface for webhook-events-id.
      operations:
      - method: GET
        name: getwebhookevent
        description: Get Webhook Event Details
        call: rest-webhook-events.getwebhookevent
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-webhook-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for PandaDoc REST API — Webhook Events. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-webhook-events
      description: List Webhook Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-webhook-events.listwebhookevents
      with:
        count: tools.count
        page: tools.page
        since: tools.since
        to: tools.to
        type: tools.type
        http_status_code: tools.http_status_code
      outputParameters:
      - type: object
        mapping: $.
    - name: get-webhook-event-details
      description: Get Webhook Event Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-webhook-events.getwebhookevent
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.