project44 · Capability

project44 Tracking API — Webhooks

project44 Tracking API — Webhooks. 3 operations. Lead operation: List webhook subscriptions. Self-contained Naftiko capability covering one Project44 business surface.

Run with Naftiko Project44Webhooks

What You Can Do

GET
Listwebhooksubscriptions — List webhook subscriptions
/v1/webhooks/subscriptions
POST
Createwebhooksubscription — Create webhook subscription
/v1/webhooks/subscriptions
DELETE
Deletewebhooksubscription — Delete webhook subscription
/v1/webhooks/subscriptions/{subscriptionid}

MCP Tools

list-webhook-subscriptions

List webhook subscriptions

read-only idempotent
create-webhook-subscription

Create webhook subscription

delete-webhook-subscription

Delete webhook subscription

idempotent

Capability Spec

tracking-webhooks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: project44 Tracking API — Webhooks
  description: 'project44 Tracking API — Webhooks. 3 operations. Lead operation: List webhook subscriptions. Self-contained
    Naftiko capability covering one Project44 business surface.'
  tags:
  - Project44
  - Webhooks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PROJECT44_API_KEY: PROJECT44_API_KEY
capability:
  consumes:
  - type: http
    namespace: tracking-webhooks
    baseUri: https://api.project44.com/api/v4
    description: project44 Tracking API — Webhooks business capability. Self-contained, no shared references.
    resources:
    - name: webhooks-subscriptions
      path: /webhooks/subscriptions
      operations:
      - name: listwebhooksubscriptions
        method: GET
        description: List webhook subscriptions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createwebhooksubscription
        method: POST
        description: Create webhook subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: webhooks-subscriptions-subscriptionId
      path: /webhooks/subscriptions/{subscriptionId}
      operations:
      - name: deletewebhooksubscription
        method: DELETE
        description: Delete webhook subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: subscriptionId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.PROJECT44_API_KEY}}'
  exposes:
  - type: rest
    namespace: tracking-webhooks-rest
    port: 8080
    description: REST adapter for project44 Tracking API — Webhooks. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/webhooks/subscriptions
      name: webhooks-subscriptions
      description: REST surface for webhooks-subscriptions.
      operations:
      - method: GET
        name: listwebhooksubscriptions
        description: List webhook subscriptions
        call: tracking-webhooks.listwebhooksubscriptions
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createwebhooksubscription
        description: Create webhook subscription
        call: tracking-webhooks.createwebhooksubscription
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/webhooks/subscriptions/{subscriptionid}
      name: webhooks-subscriptions-subscriptionid
      description: REST surface for webhooks-subscriptions-subscriptionId.
      operations:
      - method: DELETE
        name: deletewebhooksubscription
        description: Delete webhook subscription
        call: tracking-webhooks.deletewebhooksubscription
        with:
          subscriptionId: rest.subscriptionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tracking-webhooks-mcp
    port: 9090
    transport: http
    description: MCP adapter for project44 Tracking API — Webhooks. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-webhook-subscriptions
      description: List webhook subscriptions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tracking-webhooks.listwebhooksubscriptions
      outputParameters:
      - type: object
        mapping: $.
    - name: create-webhook-subscription
      description: Create webhook subscription
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tracking-webhooks.createwebhooksubscription
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-webhook-subscription
      description: Delete webhook subscription
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tracking-webhooks.deletewebhooksubscription
      with:
        subscriptionId: tools.subscriptionId
      outputParameters:
      - type: object
        mapping: $.