Telefoon · Capability

Telefoon Voice API — Conferences

Telefoon Voice API — Conferences. 2 operations. Lead operation: List Conferences. Self-contained Naftiko capability covering one Telefoon business surface.

Run with Naftiko TelefoonConferences

What You Can Do

GET
Listconferences — List Conferences
/v1/conferences
POST
Createconference — Create Conference
/v1/conferences

MCP Tools

list-conferences

List Conferences

read-only idempotent
create-conference

Create Conference

Capability Spec

voice-conferences.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telefoon Voice API — Conferences
  description: 'Telefoon Voice API — Conferences. 2 operations. Lead operation: List Conferences. Self-contained Naftiko capability
    covering one Telefoon business surface.'
  tags:
  - Telefoon
  - Conferences
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELEFOON_API_KEY: TELEFOON_API_KEY
capability:
  consumes:
  - type: http
    namespace: voice-conferences
    baseUri: https://api.telefoon.com/v1/voice
    description: Telefoon Voice API — Conferences business capability. Self-contained, no shared references.
    resources:
    - name: conferences
      path: /conferences
      operations:
      - name: listconferences
        method: GET
        description: List Conferences
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createconference
        method: POST
        description: Create Conference
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.TELEFOON_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: voice-conferences-rest
    port: 8080
    description: REST adapter for Telefoon Voice API — Conferences. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/conferences
      name: conferences
      description: REST surface for conferences.
      operations:
      - method: GET
        name: listconferences
        description: List Conferences
        call: voice-conferences.listconferences
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createconference
        description: Create Conference
        call: voice-conferences.createconference
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: voice-conferences-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telefoon Voice API — Conferences. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-conferences
      description: List Conferences
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: voice-conferences.listconferences
      outputParameters:
      - type: object
        mapping: $.
    - name: create-conference
      description: Create Conference
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: voice-conferences.createconference
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.