Qovery · Capability

Qovery API — Service Main Calls

Qovery API — Service Main Calls. 2 operations. Lead operation: Synchronize git webhook for a service. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryService Main Calls

What You Can Do

POST
Syncservicegitwebhook — Synchronize git webhook for a service
/v1/service/{serviceid}/gitwebhook/sync
GET
Getservicegitwebhookstatus — Get git webhook status for a service
/v1/service/{serviceid}/gitwebhookstatus

MCP Tools

synchronize-git-webhook-service

Synchronize git webhook for a service

get-git-webhook-status-service

Get git webhook status for a service

read-only idempotent

Capability Spec

qovery-service-main-calls.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Service Main Calls
  description: 'Qovery API — Service Main Calls. 2 operations. Lead operation: Synchronize git webhook for a service. Self-contained
    Naftiko capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Service Main Calls
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QOVERY_API_KEY: QOVERY_API_KEY
capability:
  consumes:
  - type: http
    namespace: qovery-service-main-calls
    baseUri: https://api.qovery.com
    description: Qovery API — Service Main Calls business capability. Self-contained, no shared references.
    resources:
    - name: service-serviceId-gitWebhook-sync
      path: /service/{serviceId}/gitWebhook/sync
      operations:
      - name: syncservicegitwebhook
        method: POST
        description: Synchronize git webhook for a service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: service-serviceId-gitWebhookStatus
      path: /service/{serviceId}/gitWebhookStatus
      operations:
      - name: getservicegitwebhookstatus
        method: GET
        description: Get git webhook status for a service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-service-main-calls-rest
    port: 8080
    description: REST adapter for Qovery API — Service Main Calls. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/service/{serviceid}/gitwebhook/sync
      name: service-serviceid-gitwebhook-sync
      description: REST surface for service-serviceId-gitWebhook-sync.
      operations:
      - method: POST
        name: syncservicegitwebhook
        description: Synchronize git webhook for a service
        call: qovery-service-main-calls.syncservicegitwebhook
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/service/{serviceid}/gitwebhookstatus
      name: service-serviceid-gitwebhookstatus
      description: REST surface for service-serviceId-gitWebhookStatus.
      operations:
      - method: GET
        name: getservicegitwebhookstatus
        description: Get git webhook status for a service
        call: qovery-service-main-calls.getservicegitwebhookstatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-service-main-calls-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Service Main Calls. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: synchronize-git-webhook-service
      description: Synchronize git webhook for a service
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-service-main-calls.syncservicegitwebhook
      outputParameters:
      - type: object
        mapping: $.
    - name: get-git-webhook-status-service
      description: Get git webhook status for a service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-service-main-calls.getservicegitwebhookstatus
      outputParameters:
      - type: object
        mapping: $.