Kong · Capability

Konnect API - Go SDK — DP Certificates

Konnect API - Go SDK — DP Certificates. 5 operations. Lead operation: List DP Client Certificates. Self-contained Naftiko capability covering one Kong business surface.

Run with Naftiko KongDP Certificates

What You Can Do

GET
Listdpclientcertificates — List DP Client Certificates
/v1/v2/control-planes/{controlplaneid}/dp-client-certificates
POST
Createdataplanecertificate — Pin New DP Client Certificate
/v1/v2/control-planes/{controlplaneid}/dp-client-certificates
GET
Getdataplanecertificate — Get a DP Client Certificate
/v1/v2/control-planes/{controlplaneid}/dp-client-certificates/{certificateid}
PUT
Updatedataplanecertificate — Update DP Client Certificate
/v1/v2/control-planes/{controlplaneid}/dp-client-certificates/{certificateid}
DELETE
Deletedataplanecertificate — Delete DP Client Certificate
/v1/v2/control-planes/{controlplaneid}/dp-client-certificates/{certificateid}

MCP Tools

list-dp-client-certificates

List DP Client Certificates

read-only idempotent
pin-new-dp-client-certificate

Pin New DP Client Certificate

get-dp-client-certificate

Get a DP Client Certificate

read-only idempotent
update-dp-client-certificate

Update DP Client Certificate

idempotent
delete-dp-client-certificate

Delete DP Client Certificate

idempotent

Capability Spec

konnect-platform-dp-certificates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Konnect API - Go SDK — DP Certificates
  description: 'Konnect API - Go SDK — DP Certificates. 5 operations. Lead operation: List DP Client Certificates. Self-contained
    Naftiko capability covering one Kong business surface.'
  tags:
  - Kong
  - DP Certificates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    KONG_API_KEY: KONG_API_KEY
capability:
  consumes:
  - type: http
    namespace: konnect-platform-dp-certificates
    baseUri: https://global.api.konghq.com
    description: Konnect API - Go SDK — DP Certificates business capability. Self-contained, no shared references.
    resources:
    - name: v2-control-planes-controlPlaneId-dp-client-certificates
      path: /v2/control-planes/{controlPlaneId}/dp-client-certificates
      operations:
      - name: listdpclientcertificates
        method: GET
        description: List DP Client Certificates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createdataplanecertificate
        method: POST
        description: Pin New DP Client Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v2-control-planes-controlPlaneId-dp-client-certificates-certificateId
      path: /v2/control-planes/{controlPlaneId}/dp-client-certificates/{certificateId}
      operations:
      - name: getdataplanecertificate
        method: GET
        description: Get a DP Client Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatedataplanecertificate
        method: PUT
        description: Update DP Client Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletedataplanecertificate
        method: DELETE
        description: Delete DP Client Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.KONG_API_KEY}}'
  exposes:
  - type: rest
    namespace: konnect-platform-dp-certificates-rest
    port: 8080
    description: REST adapter for Konnect API - Go SDK — DP Certificates. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/control-planes/{controlplaneid}/dp-client-certificates
      name: v2-control-planes-controlplaneid-dp-client-certificates
      description: REST surface for v2-control-planes-controlPlaneId-dp-client-certificates.
      operations:
      - method: GET
        name: listdpclientcertificates
        description: List DP Client Certificates
        call: konnect-platform-dp-certificates.listdpclientcertificates
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdataplanecertificate
        description: Pin New DP Client Certificate
        call: konnect-platform-dp-certificates.createdataplanecertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/control-planes/{controlplaneid}/dp-client-certificates/{certificateid}
      name: v2-control-planes-controlplaneid-dp-client-certificates-certificateid
      description: REST surface for v2-control-planes-controlPlaneId-dp-client-certificates-certificateId.
      operations:
      - method: GET
        name: getdataplanecertificate
        description: Get a DP Client Certificate
        call: konnect-platform-dp-certificates.getdataplanecertificate
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatedataplanecertificate
        description: Update DP Client Certificate
        call: konnect-platform-dp-certificates.updatedataplanecertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedataplanecertificate
        description: Delete DP Client Certificate
        call: konnect-platform-dp-certificates.deletedataplanecertificate
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: konnect-platform-dp-certificates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Konnect API - Go SDK — DP Certificates. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-dp-client-certificates
      description: List DP Client Certificates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-dp-certificates.listdpclientcertificates
      outputParameters:
      - type: object
        mapping: $.
    - name: pin-new-dp-client-certificate
      description: Pin New DP Client Certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: konnect-platform-dp-certificates.createdataplanecertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-dp-client-certificate
      description: Get a DP Client Certificate
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-dp-certificates.getdataplanecertificate
      outputParameters:
      - type: object
        mapping: $.
    - name: update-dp-client-certificate
      description: Update DP Client Certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-dp-certificates.updatedataplanecertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-dp-client-certificate
      description: Delete DP Client Certificate
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: konnect-platform-dp-certificates.deletedataplanecertificate
      outputParameters:
      - type: object
        mapping: $.