Pipedrive · Capability

Pipedrive API v1 — Meetings

Pipedrive API v1 — Meetings. 2 operations. Lead operation: Link a user with the installed video call integration. Self-contained Naftiko capability covering one Pipedrive business surface.

Run with Naftiko PipedriveMeetings

What You Can Do

POST
Saveuserproviderlink — Link a user with the installed video call integration
/v1/meetings/userproviderlinks
DELETE
Deleteuserproviderlink — Delete the link between a user and the installed video call integration
/v1/meetings/userproviderlinks/{id}

MCP Tools

link-user-installed-video-call

Link a user with the installed video call integration

delete-link-between-user-and

Delete the link between a user and the installed video call integration

idempotent

Capability Spec

v1-meetings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pipedrive API v1 — Meetings
  description: 'Pipedrive API v1 — Meetings. 2 operations. Lead operation: Link a user with the installed video call integration.
    Self-contained Naftiko capability covering one Pipedrive business surface.'
  tags:
  - Pipedrive
  - Meetings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PIPEDRIVE_API_KEY: PIPEDRIVE_API_KEY
capability:
  consumes:
  - type: http
    namespace: v1-meetings
    baseUri: https://api.pipedrive.com/v1
    description: Pipedrive API v1 — Meetings business capability. Self-contained, no shared references.
    resources:
    - name: meetings-userProviderLinks
      path: /meetings/userProviderLinks
      operations:
      - name: saveuserproviderlink
        method: POST
        description: Link a user with the installed video call integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: meetings-userProviderLinks-id
      path: /meetings/userProviderLinks/{id}
      operations:
      - name: deleteuserproviderlink
        method: DELETE
        description: Delete the link between a user and the installed video call integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier linking a user to the installed integration
          required: true
    authentication:
      type: bearer
      token: '{{env.PIPEDRIVE_API_KEY}}'
  exposes:
  - type: rest
    namespace: v1-meetings-rest
    port: 8080
    description: REST adapter for Pipedrive API v1 — Meetings. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/meetings/userproviderlinks
      name: meetings-userproviderlinks
      description: REST surface for meetings-userProviderLinks.
      operations:
      - method: POST
        name: saveuserproviderlink
        description: Link a user with the installed video call integration
        call: v1-meetings.saveuserproviderlink
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meetings/userproviderlinks/{id}
      name: meetings-userproviderlinks-id
      description: REST surface for meetings-userProviderLinks-id.
      operations:
      - method: DELETE
        name: deleteuserproviderlink
        description: Delete the link between a user and the installed video call integration
        call: v1-meetings.deleteuserproviderlink
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: v1-meetings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pipedrive API v1 — Meetings. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: link-user-installed-video-call
      description: Link a user with the installed video call integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: v1-meetings.saveuserproviderlink
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-link-between-user-and
      description: Delete the link between a user and the installed video call integration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: v1-meetings.deleteuserproviderlink
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.