Qovery · Capability

Qovery API — Organization Webhook

Qovery API — Organization Webhook. 6 operations. Lead operation: List organization webhooks. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryOrganization Webhook

What You Can Do

GET
Listorganizationwebhooks — List organization webhooks
/v1/organization/{organizationid}/webhook
POST
Createorganizationwebhook — Create an organization webhook
/v1/organization/{organizationid}/webhook
GET
Getorganizationwebhook — Get an Organization webhook
/v1/organization/{organizationid}/webhook/{webhookid}
PUT
Editorganizationwebhook — Edit an organization webhook
/v1/organization/{organizationid}/webhook/{webhookid}
DELETE
Deleteorganizationwebhook — Delete organization webhook
/v1/organization/{organizationid}/webhook/{webhookid}
GET
Listwebhookevent — List events of a webhook
/v1/organization/{organizationid}/webhook/{webhookid}/event

MCP Tools

list-organization-webhooks

List organization webhooks

read-only idempotent
create-organization-webhook

Create an organization webhook

get-organization-webhook

Get an Organization webhook

read-only idempotent
edit-organization-webhook

Edit an organization webhook

idempotent
delete-organization-webhook

Delete organization webhook

idempotent
list-events-webhook

List events of a webhook

read-only idempotent

Capability Spec

qovery-organization-webhook.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Organization Webhook
  description: 'Qovery API — Organization Webhook. 6 operations. Lead operation: List organization webhooks. Self-contained
    Naftiko capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Organization Webhook
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QOVERY_API_KEY: QOVERY_API_KEY
capability:
  consumes:
  - type: http
    namespace: qovery-organization-webhook
    baseUri: https://api.qovery.com
    description: Qovery API — Organization Webhook business capability. Self-contained, no shared references.
    resources:
    - name: organization-organizationId-webhook
      path: /organization/{organizationId}/webhook
      operations:
      - name: listorganizationwebhooks
        method: GET
        description: List organization webhooks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createorganizationwebhook
        method: POST
        description: Create an organization webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: organization-organizationId-webhook-webhookId
      path: /organization/{organizationId}/webhook/{webhookId}
      operations:
      - name: getorganizationwebhook
        method: GET
        description: Get an Organization webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editorganizationwebhook
        method: PUT
        description: Edit an organization webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteorganizationwebhook
        method: DELETE
        description: Delete organization webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: organization-organizationId-webhook-webhookId-event
      path: /organization/{organizationId}/webhook/{webhookId}/event
      operations:
      - name: listwebhookevent
        method: GET
        description: List events of a webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-organization-webhook-rest
    port: 8080
    description: REST adapter for Qovery API — Organization Webhook. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organization/{organizationid}/webhook
      name: organization-organizationid-webhook
      description: REST surface for organization-organizationId-webhook.
      operations:
      - method: GET
        name: listorganizationwebhooks
        description: List organization webhooks
        call: qovery-organization-webhook.listorganizationwebhooks
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorganizationwebhook
        description: Create an organization webhook
        call: qovery-organization-webhook.createorganizationwebhook
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/webhook/{webhookid}
      name: organization-organizationid-webhook-webhookid
      description: REST surface for organization-organizationId-webhook-webhookId.
      operations:
      - method: GET
        name: getorganizationwebhook
        description: Get an Organization webhook
        call: qovery-organization-webhook.getorganizationwebhook
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editorganizationwebhook
        description: Edit an organization webhook
        call: qovery-organization-webhook.editorganizationwebhook
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteorganizationwebhook
        description: Delete organization webhook
        call: qovery-organization-webhook.deleteorganizationwebhook
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/webhook/{webhookid}/event
      name: organization-organizationid-webhook-webhookid-event
      description: REST surface for organization-organizationId-webhook-webhookId-event.
      operations:
      - method: GET
        name: listwebhookevent
        description: List events of a webhook
        call: qovery-organization-webhook.listwebhookevent
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-organization-webhook-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Organization Webhook. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-organization-webhooks
      description: List organization webhooks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-organization-webhook.listorganizationwebhooks
      outputParameters:
      - type: object
        mapping: $.
    - name: create-organization-webhook
      description: Create an organization webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-organization-webhook.createorganizationwebhook
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-organization-webhook
      description: Get an Organization webhook
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-organization-webhook.getorganizationwebhook
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-organization-webhook
      description: Edit an organization webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-organization-webhook.editorganizationwebhook
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-organization-webhook
      description: Delete organization webhook
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-organization-webhook.deleteorganizationwebhook
      outputParameters:
      - type: object
        mapping: $.
    - name: list-events-webhook
      description: List events of a webhook
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-organization-webhook.listwebhookevent
      outputParameters:
      - type: object
        mapping: $.