Qovery · Capability

Qovery API — Organization Custom Role

Qovery API — Organization Custom Role. 5 operations. Lead operation: List organization custom roles. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryOrganization Custom Role

What You Can Do

GET
Listorganizationcustomroles — List organization custom roles
/v1/organization/{organizationid}/customrole
POST
Createorganizationcustomrole — Create an organization custom role
/v1/organization/{organizationid}/customrole
GET
Getorganizationcustomrole — Get an organization custom role
/v1/organization/{organizationid}/customrole/{customroleid}
PUT
Editorganizationcustomrole — Edit an organization custom role
/v1/organization/{organizationid}/customrole/{customroleid}
DELETE
Deleteorganizationcustomrole — Delete organization custom role
/v1/organization/{organizationid}/customrole/{customroleid}

MCP Tools

list-organization-custom-roles

List organization custom roles

read-only idempotent
create-organization-custom-role

Create an organization custom role

get-organization-custom-role

Get an organization custom role

read-only idempotent
edit-organization-custom-role

Edit an organization custom role

idempotent
delete-organization-custom-role

Delete organization custom role

idempotent

Capability Spec

qovery-organization-custom-role.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Organization Custom Role
  description: 'Qovery API — Organization Custom Role. 5 operations. Lead operation: List organization custom roles. Self-contained
    Naftiko capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Organization Custom Role
  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-custom-role
    baseUri: https://api.qovery.com
    description: Qovery API — Organization Custom Role business capability. Self-contained, no shared references.
    resources:
    - name: organization-organizationId-customRole
      path: /organization/{organizationId}/customRole
      operations:
      - name: listorganizationcustomroles
        method: GET
        description: List organization custom roles
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createorganizationcustomrole
        method: POST
        description: Create an organization custom role
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: organization-organizationId-customRole-customRoleId
      path: /organization/{organizationId}/customRole/{customRoleId}
      operations:
      - name: getorganizationcustomrole
        method: GET
        description: Get an organization custom role
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editorganizationcustomrole
        method: PUT
        description: Edit an organization custom role
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteorganizationcustomrole
        method: DELETE
        description: Delete organization custom role
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-organization-custom-role-rest
    port: 8080
    description: REST adapter for Qovery API — Organization Custom Role. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organization/{organizationid}/customrole
      name: organization-organizationid-customrole
      description: REST surface for organization-organizationId-customRole.
      operations:
      - method: GET
        name: listorganizationcustomroles
        description: List organization custom roles
        call: qovery-organization-custom-role.listorganizationcustomroles
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorganizationcustomrole
        description: Create an organization custom role
        call: qovery-organization-custom-role.createorganizationcustomrole
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/customrole/{customroleid}
      name: organization-organizationid-customrole-customroleid
      description: REST surface for organization-organizationId-customRole-customRoleId.
      operations:
      - method: GET
        name: getorganizationcustomrole
        description: Get an organization custom role
        call: qovery-organization-custom-role.getorganizationcustomrole
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editorganizationcustomrole
        description: Edit an organization custom role
        call: qovery-organization-custom-role.editorganizationcustomrole
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteorganizationcustomrole
        description: Delete organization custom role
        call: qovery-organization-custom-role.deleteorganizationcustomrole
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-organization-custom-role-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Organization Custom Role. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-organization-custom-roles
      description: List organization custom roles
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-organization-custom-role.listorganizationcustomroles
      outputParameters:
      - type: object
        mapping: $.
    - name: create-organization-custom-role
      description: Create an organization custom role
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-organization-custom-role.createorganizationcustomrole
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-organization-custom-role
      description: Get an organization custom role
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-organization-custom-role.getorganizationcustomrole
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-organization-custom-role
      description: Edit an organization custom role
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-organization-custom-role.editorganizationcustomrole
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-organization-custom-role
      description: Delete organization custom role
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-organization-custom-role.deleteorganizationcustomrole
      outputParameters:
      - type: object
        mapping: $.