Deel · Capability

Deel Webhooks API — Webhooks

Self-contained Naftiko capability for managing Deel webhook subscriptions.

Deel Webhooks API — Webhooks is a Naftiko capability published by Deel, one of 20 capabilities the APIs.io network indexes for this provider. It bundles 5 operations across the GET, POST, and DELETE methods rooted at /v1/webhooks.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Deel, Webhooks, and Events.

Run with Naftiko DeelWebhooksEvents

What You Can Do

GET
Listwebhooks — List webhooks.
/v1/webhooks
POST
Createwebhook — Create webhook.
/v1/webhooks
GET
Getwebhook — Get webhook.
/v1/webhooks/{webhook_id}
DELETE
Deletewebhook — Delete webhook.
/v1/webhooks/{webhook_id}
GET
Listwebhookevents — List webhook event types.
/v1/webhooks/events

Capability Spec

webhooks-webhooks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Deel Webhooks API — Webhooks
  description: Self-contained Naftiko capability for managing Deel webhook subscriptions.
  tags:
  - Deel
  - Webhooks
  - Events
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    DEEL_API_TOKEN: DEEL_API_TOKEN
capability:
  consumes:
  - type: http
    namespace: webhooks-webhooks
    baseUri: https://api.letsdeel.com/rest/v2
    description: Deel Webhooks management capability.
    resources:
    - name: webhooks
      path: /webhooks
      operations:
      - name: listWebhooks
        method: GET
        description: List webhook subscriptions.
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters: []
      - name: createWebhook
        method: POST
        description: Create a webhook subscription.
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters:
        - { name: body, in: body, type: object, required: true }
    - name: webhook
      path: /webhooks/{webhook_id}
      operations:
      - name: getWebhook
        method: GET
        description: Retrieve a webhook.
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters:
        - { name: webhook_id, in: path, type: string, required: true }
      - name: deleteWebhook
        method: DELETE
        description: Delete a webhook.
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters:
        - { name: webhook_id, in: path, type: string, required: true }
    - name: webhook-events
      path: /webhooks/events
      operations:
      - name: listWebhookEvents
        method: GET
        description: List supported webhook event types.
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters: []
    authentication:
      type: bearer
      value: '{{env.DEEL_API_TOKEN}}'
      placement: header
  exposes:
  - type: rest
    namespace: webhooks-webhooks-rest
    port: 8080
    description: REST adapter for Deel webhook management.
    resources:
    - path: /v1/webhooks
      name: webhooks
      description: REST surface for webhooks.
      operations:
      - method: GET
        name: listWebhooks
        description: List webhooks.
        call: webhooks-webhooks.listWebhooks
      - method: POST
        name: createWebhook
        description: Create webhook.
        call: webhooks-webhooks.createWebhook
        with: { body: rest.body }
    - path: /v1/webhooks/{webhook_id}
      name: webhook
      description: REST surface for a webhook.
      operations:
      - method: GET
        name: getWebhook
        description: Get webhook.
        call: webhooks-webhooks.getWebhook
        with: { webhook_id: rest.path.webhook_id }
      - method: DELETE
        name: deleteWebhook
        description: Delete webhook.
        call: webhooks-webhooks.deleteWebhook
        with: { webhook_id: rest.path.webhook_id }
    - path: /v1/webhooks/events
      name: webhook-events
      description: REST surface for webhook event catalog.
      operations:
      - method: GET
        name: listWebhookEvents
        description: List webhook event types.
        call: webhooks-webhooks.listWebhookEvents