Blissfully · Capability

Vendr Catalog API — Webhooks

Vendr Catalog API — Webhooks. 2 operations. Lead operation: Vendr List Webhooks. Self-contained Naftiko capability covering one Blissfully business surface.

Run with Naftiko BlissfullyWebhooks

What You Can Do

GET
Listwebhooks — Vendr List Webhooks
/v1/webhooks
POST
Createwebhook — Vendr Create Webhook
/v1/webhooks

MCP Tools

vendr-list-webhooks

Vendr List Webhooks

read-only idempotent
vendr-create-webhook

Vendr Create Webhook

Capability Spec

vendr-catalog-webhooks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Vendr Catalog API — Webhooks
  description: 'Vendr Catalog API — Webhooks. 2 operations. Lead operation: Vendr List Webhooks. Self-contained Naftiko capability
    covering one Blissfully business surface.'
  tags:
  - Blissfully
  - Webhooks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BLISSFULLY_API_KEY: BLISSFULLY_API_KEY
capability:
  consumes:
  - type: http
    namespace: vendr-catalog-webhooks
    baseUri: https://api.vendr.com/v1
    description: Vendr Catalog API — Webhooks business capability. Self-contained, no shared references.
    resources:
    - name: webhooks
      path: /webhooks
      operations:
      - name: listwebhooks
        method: GET
        description: Vendr List Webhooks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createwebhook
        method: POST
        description: Vendr Create Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.BLISSFULLY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: vendr-catalog-webhooks-rest
    port: 8080
    description: REST adapter for Vendr Catalog API — Webhooks. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/webhooks
      name: webhooks
      description: REST surface for webhooks.
      operations:
      - method: GET
        name: listwebhooks
        description: Vendr List Webhooks
        call: vendr-catalog-webhooks.listwebhooks
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createwebhook
        description: Vendr Create Webhook
        call: vendr-catalog-webhooks.createwebhook
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vendr-catalog-webhooks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Vendr Catalog API — Webhooks. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: vendr-list-webhooks
      description: Vendr List Webhooks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vendr-catalog-webhooks.listwebhooks
      outputParameters:
      - type: object
        mapping: $.
    - name: vendr-create-webhook
      description: Vendr Create Webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: vendr-catalog-webhooks.createwebhook
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.