Qovery · Capability

Qovery API — Organization Api Token

Qovery API — Organization Api Token. 3 operations. Lead operation: List organization api tokens. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryOrganization Api Token

What You Can Do

GET
Listorganizationapitokens — List organization api tokens
/v1/organization/{organizationid}/apitoken
POST
Createorganizationapitoken — Create an organization api token
/v1/organization/{organizationid}/apitoken
DELETE
Deleteorganizationapitoken — Delete organization api token
/v1/organization/{organizationid}/apitoken/{apitokenid}

MCP Tools

list-organization-api-tokens

List organization api tokens

read-only idempotent
create-organization-api-token

Create an organization api token

delete-organization-api-token

Delete organization api token

idempotent

Capability Spec

qovery-organization-api-token.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Organization Api Token
  description: 'Qovery API — Organization Api Token. 3 operations. Lead operation: List organization api tokens. Self-contained
    Naftiko capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Organization Api Token
  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-api-token
    baseUri: https://api.qovery.com
    description: Qovery API — Organization Api Token business capability. Self-contained, no shared references.
    resources:
    - name: organization-organizationId-apiToken
      path: /organization/{organizationId}/apiToken
      operations:
      - name: listorganizationapitokens
        method: GET
        description: List organization api tokens
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: string
          description: Name of the token to filter results by.
        - name: creatorName
          in: query
          type: string
          description: Name of the token creator to filter results by.
      - name: createorganizationapitoken
        method: POST
        description: Create an organization api token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: organization-organizationId-apiToken-apiTokenId
      path: /organization/{organizationId}/apiToken/{apiTokenId}
      operations:
      - name: deleteorganizationapitoken
        method: DELETE
        description: Delete organization api token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: apiTokenId
          in: path
          type: string
          description: Organization Api Token ID
          required: true
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-organization-api-token-rest
    port: 8080
    description: REST adapter for Qovery API — Organization Api Token. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organization/{organizationid}/apitoken
      name: organization-organizationid-apitoken
      description: REST surface for organization-organizationId-apiToken.
      operations:
      - method: GET
        name: listorganizationapitokens
        description: List organization api tokens
        call: qovery-organization-api-token.listorganizationapitokens
        with:
          name: rest.name
          creatorName: rest.creatorName
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorganizationapitoken
        description: Create an organization api token
        call: qovery-organization-api-token.createorganizationapitoken
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/apitoken/{apitokenid}
      name: organization-organizationid-apitoken-apitokenid
      description: REST surface for organization-organizationId-apiToken-apiTokenId.
      operations:
      - method: DELETE
        name: deleteorganizationapitoken
        description: Delete organization api token
        call: qovery-organization-api-token.deleteorganizationapitoken
        with:
          apiTokenId: rest.apiTokenId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-organization-api-token-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Organization Api Token. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-organization-api-tokens
      description: List organization api tokens
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-organization-api-token.listorganizationapitokens
      with:
        name: tools.name
        creatorName: tools.creatorName
      outputParameters:
      - type: object
        mapping: $.
    - name: create-organization-api-token
      description: Create an organization api token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-organization-api-token.createorganizationapitoken
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-organization-api-token
      description: Delete organization api token
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-organization-api-token.deleteorganizationapitoken
      with:
        apiTokenId: tools.apiTokenId
      outputParameters:
      - type: object
        mapping: $.