SafeLine · Capability

SafeLine Management API — SSL Certificates

SafeLine Management API — SSL Certificates. 3 operations. Lead operation: List SSL Certificates. Self-contained Naftiko capability covering one Safeline business surface.

Run with Naftiko SafelineSSL Certificates

What You Can Do

GET
Listsslcertificates — List SSL Certificates
/v1/api/certapi
DELETE
Deletesslcertificate — Delete SSL Certificate
/v1/api/certapi
POST
Uploadsslcertificate — Upload SSL Certificate
/v1/api/uploadsslcertapi

MCP Tools

list-ssl-certificates

List SSL Certificates

read-only idempotent
delete-ssl-certificate

Delete SSL Certificate

idempotent
upload-ssl-certificate

Upload SSL Certificate

Capability Spec

management-ssl-certificates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SafeLine Management API — SSL Certificates
  description: 'SafeLine Management API — SSL Certificates. 3 operations. Lead operation: List SSL Certificates. Self-contained
    Naftiko capability covering one Safeline business surface.'
  tags:
  - Safeline
  - SSL Certificates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SAFELINE_API_KEY: SAFELINE_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-ssl-certificates
    baseUri: https://{host}:9443
    description: SafeLine Management API — SSL Certificates business capability. Self-contained, no shared references.
    resources:
    - name: api-CertAPI
      path: /api/CertAPI
      operations:
      - name: listsslcertificates
        method: GET
        description: List SSL Certificates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
        - name: page_size
          in: query
          type: integer
      - name: deletesslcertificate
        method: DELETE
        description: Delete SSL Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-UploadSSLCertAPI
      path: /api/UploadSSLCertAPI
      operations:
      - name: uploadsslcertificate
        method: POST
        description: Upload SSL Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-SLCE-API-Token
      value: '{{env.SAFELINE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: management-ssl-certificates-rest
    port: 8080
    description: REST adapter for SafeLine Management API — SSL Certificates. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/certapi
      name: api-certapi
      description: REST surface for api-CertAPI.
      operations:
      - method: GET
        name: listsslcertificates
        description: List SSL Certificates
        call: management-ssl-certificates.listsslcertificates
        with:
          page: rest.page
          page_size: rest.page_size
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletesslcertificate
        description: Delete SSL Certificate
        call: management-ssl-certificates.deletesslcertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/uploadsslcertapi
      name: api-uploadsslcertapi
      description: REST surface for api-UploadSSLCertAPI.
      operations:
      - method: POST
        name: uploadsslcertificate
        description: Upload SSL Certificate
        call: management-ssl-certificates.uploadsslcertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-ssl-certificates-mcp
    port: 9090
    transport: http
    description: MCP adapter for SafeLine Management API — SSL Certificates. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-ssl-certificates
      description: List SSL Certificates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-ssl-certificates.listsslcertificates
      with:
        page: tools.page
        page_size: tools.page_size
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-ssl-certificate
      description: Delete SSL Certificate
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: management-ssl-certificates.deletesslcertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: upload-ssl-certificate
      description: Upload SSL Certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: management-ssl-certificates.uploadsslcertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.