Qovery · Capability

Qovery API — Job Main Calls

Qovery API — Job Main Calls. 5 operations. Lead operation: Get job by ID. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryJob Main Calls

What You Can Do

GET
Getjob — Get job by ID
/v1/job/{jobid}
PUT
Editjob — Edit job
/v1/job/{jobid}
DELETE
Deletejob — Delete job
/v1/job/{jobid}
GET
Listjobcommit — List last job commits
/v1/job/{jobid}/commit
GET
Getjobstatus — Get job status
/v1/job/{jobid}/status

MCP Tools

get-job-id

Get job by ID

read-only idempotent
edit-job

Edit job

idempotent
delete-job

Delete job

idempotent
list-last-job-commits

List last job commits

read-only idempotent
get-job-status

Get job status

read-only idempotent

Capability Spec

qovery-job-main-calls.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Job Main Calls
  description: 'Qovery API — Job Main Calls. 5 operations. Lead operation: Get job by ID. Self-contained Naftiko capability
    covering one Qovery business surface.'
  tags:
  - Qovery
  - Job 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-job-main-calls
    baseUri: https://api.qovery.com
    description: Qovery API — Job Main Calls business capability. Self-contained, no shared references.
    resources:
    - name: job-jobId
      path: /job/{jobId}
      operations:
      - name: getjob
        method: GET
        description: Get job by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editjob
        method: PUT
        description: Edit job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletejob
        method: DELETE
        description: Delete job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: job-jobId-commit
      path: /job/{jobId}/commit
      operations:
      - name: listjobcommit
        method: GET
        description: List last job commits
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: job-jobId-status
      path: /job/{jobId}/status
      operations:
      - name: getjobstatus
        method: GET
        description: Get job status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-job-main-calls-rest
    port: 8080
    description: REST adapter for Qovery API — Job Main Calls. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/job/{jobid}
      name: job-jobid
      description: REST surface for job-jobId.
      operations:
      - method: GET
        name: getjob
        description: Get job by ID
        call: qovery-job-main-calls.getjob
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editjob
        description: Edit job
        call: qovery-job-main-calls.editjob
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletejob
        description: Delete job
        call: qovery-job-main-calls.deletejob
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/job/{jobid}/commit
      name: job-jobid-commit
      description: REST surface for job-jobId-commit.
      operations:
      - method: GET
        name: listjobcommit
        description: List last job commits
        call: qovery-job-main-calls.listjobcommit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/job/{jobid}/status
      name: job-jobid-status
      description: REST surface for job-jobId-status.
      operations:
      - method: GET
        name: getjobstatus
        description: Get job status
        call: qovery-job-main-calls.getjobstatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-job-main-calls-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Job Main Calls. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-job-id
      description: Get job by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-job-main-calls.getjob
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-job
      description: Edit job
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-job-main-calls.editjob
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-job
      description: Delete job
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-job-main-calls.deletejob
      outputParameters:
      - type: object
        mapping: $.
    - name: list-last-job-commits
      description: List last job commits
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-job-main-calls.listjobcommit
      outputParameters:
      - type: object
        mapping: $.
    - name: get-job-status
      description: Get job status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-job-main-calls.getjobstatus
      outputParameters:
      - type: object
        mapping: $.