Composio · Capability

Composio Platform API — Webhook Endpoints

Composio Platform API — Webhook Endpoints. 5 operations. Lead operation: Create webhook endpoint. Self-contained Naftiko capability covering one Composio business surface.

Run with Naftiko ComposioWebhook Endpoints

What You Can Do

POST
Postwebhookendpoints — Create webhook endpoint
/v1/api/v3/webhook-endpoints
GET
Getwebhookendpoints — List webhook endpoints
/v1/api/v3/webhook-endpoints
GET
Getwebhookendpointsbynanoid — Get webhook endpoint
/v1/api/v3/webhook-endpoints/{nano-id}
POST
Postwebhookendpointsbynanoid — Put webhook endpoint configuration
/v1/api/v3/webhook-endpoints/{nano-id}
PATCH
Patchwebhookendpointsbynanoid — Update webhook endpoint configuration
/v1/api/v3/webhook-endpoints/{nano-id}

MCP Tools

create-webhook-endpoint

Create webhook endpoint

list-webhook-endpoints

List webhook endpoints

read-only idempotent
get-webhook-endpoint

Get webhook endpoint

read-only idempotent
put-webhook-endpoint-configuration

Put webhook endpoint configuration

update-webhook-endpoint-configuration

Update webhook endpoint configuration

idempotent

Capability Spec

composio-webhook-endpoints.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Composio Platform API — Webhook Endpoints
  description: 'Composio Platform API — Webhook Endpoints. 5 operations. Lead operation: Create webhook endpoint. Self-contained
    Naftiko capability covering one Composio business surface.'
  tags:
  - Composio
  - Webhook Endpoints
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COMPOSIO_API_KEY: COMPOSIO_API_KEY
capability:
  consumes:
  - type: http
    namespace: composio-webhook-endpoints
    baseUri: https://backend.composio.dev
    description: Composio Platform API — Webhook Endpoints business capability. Self-contained, no shared references.
    resources:
    - name: api-v3-webhook_endpoints
      path: /api/v3/webhook_endpoints
      operations:
      - name: postwebhookendpoints
        method: POST
        description: Create webhook endpoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: getwebhookendpoints
        method: GET
        description: List webhook endpoints
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: toolkit_slug
          in: query
          type: string
          description: Filter by toolkit slug
    - name: api-v3-webhook_endpoints-nano_id
      path: /api/v3/webhook_endpoints/{nano_id}
      operations:
      - name: getwebhookendpointsbynanoid
        method: GET
        description: Get webhook endpoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: nano_id
          in: path
          type: string
          description: Webhook endpoint nano ID (e.g., we_abc123)
          required: true
      - name: postwebhookendpointsbynanoid
        method: POST
        description: Put webhook endpoint configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: nano_id
          in: path
          type: string
          description: Webhook endpoint nano ID (e.g., we_abc123)
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: patchwebhookendpointsbynanoid
        method: PATCH
        description: Update webhook endpoint configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: nano_id
          in: path
          type: string
          description: Webhook endpoint nano ID (e.g., we_abc123)
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.COMPOSIO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: composio-webhook-endpoints-rest
    port: 8080
    description: REST adapter for Composio Platform API — Webhook Endpoints. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/v3/webhook-endpoints
      name: api-v3-webhook-endpoints
      description: REST surface for api-v3-webhook_endpoints.
      operations:
      - method: POST
        name: postwebhookendpoints
        description: Create webhook endpoint
        call: composio-webhook-endpoints.postwebhookendpoints
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getwebhookendpoints
        description: List webhook endpoints
        call: composio-webhook-endpoints.getwebhookendpoints
        with:
          toolkit_slug: rest.toolkit_slug
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/webhook-endpoints/{nano-id}
      name: api-v3-webhook-endpoints-nano-id
      description: REST surface for api-v3-webhook_endpoints-nano_id.
      operations:
      - method: GET
        name: getwebhookendpointsbynanoid
        description: Get webhook endpoint
        call: composio-webhook-endpoints.getwebhookendpointsbynanoid
        with:
          nano_id: rest.nano_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postwebhookendpointsbynanoid
        description: Put webhook endpoint configuration
        call: composio-webhook-endpoints.postwebhookendpointsbynanoid
        with:
          nano_id: rest.nano_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchwebhookendpointsbynanoid
        description: Update webhook endpoint configuration
        call: composio-webhook-endpoints.patchwebhookendpointsbynanoid
        with:
          nano_id: rest.nano_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: composio-webhook-endpoints-mcp
    port: 9090
    transport: http
    description: MCP adapter for Composio Platform API — Webhook Endpoints. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: create-webhook-endpoint
      description: Create webhook endpoint
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: composio-webhook-endpoints.postwebhookendpoints
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-webhook-endpoints
      description: List webhook endpoints
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: composio-webhook-endpoints.getwebhookendpoints
      with:
        toolkit_slug: tools.toolkit_slug
      outputParameters:
      - type: object
        mapping: $.
    - name: get-webhook-endpoint
      description: Get webhook endpoint
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: composio-webhook-endpoints.getwebhookendpointsbynanoid
      with:
        nano_id: tools.nano_id
      outputParameters:
      - type: object
        mapping: $.
    - name: put-webhook-endpoint-configuration
      description: Put webhook endpoint configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: composio-webhook-endpoints.postwebhookendpointsbynanoid
      with:
        nano_id: tools.nano_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-webhook-endpoint-configuration
      description: Update webhook endpoint configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: composio-webhook-endpoints.patchwebhookendpointsbynanoid
      with:
        nano_id: tools.nano_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.