Telnyx · Capability

Telnyx API — Bucket SSL Certificate

Telnyx API — Bucket SSL Certificate. 3 operations. Lead operation: Remove SSL Certificate. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxBucket SSL Certificate

What You Can Do

DELETE
Removestoragesslcertificate — Remove SSL Certificate
/v1/storage/buckets/{bucketname}/ssl-certificate
GET
Getstoragesslcertificates — Get Bucket SSL Certificate
/v1/storage/buckets/{bucketname}/ssl-certificate
PUT
Addstoragesslcertificate — Add SSL Certificate
/v1/storage/buckets/{bucketname}/ssl-certificate

MCP Tools

remove-ssl-certificate

Remove SSL Certificate

idempotent
get-bucket-ssl-certificate

Get Bucket SSL Certificate

read-only idempotent
add-ssl-certificate

Add SSL Certificate

idempotent

Capability Spec

telnyx-bucket-ssl-certificate.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Bucket SSL Certificate
  description: 'Telnyx API — Bucket SSL Certificate. 3 operations. Lead operation: Remove SSL Certificate. Self-contained
    Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Bucket SSL Certificate
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-bucket-ssl-certificate
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Bucket SSL Certificate business capability. Self-contained, no shared references.
    resources:
    - name: storage-buckets-bucketName-ssl_certificate
      path: /storage/buckets/{bucketName}/ssl_certificate
      operations:
      - name: removestoragesslcertificate
        method: DELETE
        description: Remove SSL Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: bucketName
          in: path
          type: string
          description: Bucket Name
          required: true
      - name: getstoragesslcertificates
        method: GET
        description: Get Bucket SSL Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: bucketName
          in: path
          type: string
          description: The name of the bucket
          required: true
      - name: addstoragesslcertificate
        method: PUT
        description: Add SSL Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: bucketName
          in: path
          type: string
          description: The name of the bucket
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-bucket-ssl-certificate-rest
    port: 8080
    description: REST adapter for Telnyx API — Bucket SSL Certificate. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/storage/buckets/{bucketname}/ssl-certificate
      name: storage-buckets-bucketname-ssl-certificate
      description: REST surface for storage-buckets-bucketName-ssl_certificate.
      operations:
      - method: DELETE
        name: removestoragesslcertificate
        description: Remove SSL Certificate
        call: telnyx-bucket-ssl-certificate.removestoragesslcertificate
        with:
          bucketName: rest.bucketName
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getstoragesslcertificates
        description: Get Bucket SSL Certificate
        call: telnyx-bucket-ssl-certificate.getstoragesslcertificates
        with:
          bucketName: rest.bucketName
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: addstoragesslcertificate
        description: Add SSL Certificate
        call: telnyx-bucket-ssl-certificate.addstoragesslcertificate
        with:
          bucketName: rest.bucketName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-bucket-ssl-certificate-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Bucket SSL Certificate. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: remove-ssl-certificate
      description: Remove SSL Certificate
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-bucket-ssl-certificate.removestoragesslcertificate
      with:
        bucketName: tools.bucketName
      outputParameters:
      - type: object
        mapping: $.
    - name: get-bucket-ssl-certificate
      description: Get Bucket SSL Certificate
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-bucket-ssl-certificate.getstoragesslcertificates
      with:
        bucketName: tools.bucketName
      outputParameters:
      - type: object
        mapping: $.
    - name: add-ssl-certificate
      description: Add SSL Certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: telnyx-bucket-ssl-certificate.addstoragesslcertificate
      with:
        bucketName: tools.bucketName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.