Telefonie · Capability

Telefonie Voice API — Conferences

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

Run with Naftiko TelefonieConferences

What You Can Do

GET
Listconferences — List Conferences
/v1/conferences
POST
Createconference — Create Conference
/v1/conferences
GET
Listconferenceparticipants — List Conference Participants
/v1/conferences/{conference-id}/participants
POST
Addconferenceparticipant — Add Conference Participant
/v1/conferences/{conference-id}/participants

MCP Tools

list-conferences

List Conferences

read-only idempotent
create-conference

Create Conference

list-conference-participants

List Conference Participants

read-only idempotent
add-conference-participant

Add Conference Participant

Capability Spec

voice-conferences.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telefonie Voice API — Conferences
  description: 'Telefonie Voice API — Conferences. 4 operations. Lead operation: List Conferences. Self-contained Naftiko
    capability covering one Telefonie business surface.'
  tags:
  - Telefonie
  - Conferences
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELEFONIE_API_KEY: TELEFONIE_API_KEY
capability:
  consumes:
  - type: http
    namespace: voice-conferences
    baseUri: https://api.telefonie.com/v1/voice
    description: Telefonie 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: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter by conference status
      - 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
    - name: conferences-conference_id-participants
      path: /conferences/{conference_id}/participants
      operations:
      - name: listconferenceparticipants
        method: GET
        description: List Conference Participants
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: conference_id
          in: path
          type: string
          description: Unique identifier for the conference
          required: true
      - name: addconferenceparticipant
        method: POST
        description: Add Conference Participant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: conference_id
          in: path
          type: string
          description: Unique identifier for the conference
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.TELEFONIE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: voice-conferences-rest
    port: 8080
    description: REST adapter for Telefonie 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
        with:
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createconference
        description: Create Conference
        call: voice-conferences.createconference
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/conferences/{conference-id}/participants
      name: conferences-conference-id-participants
      description: REST surface for conferences-conference_id-participants.
      operations:
      - method: GET
        name: listconferenceparticipants
        description: List Conference Participants
        call: voice-conferences.listconferenceparticipants
        with:
          conference_id: rest.conference_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: addconferenceparticipant
        description: Add Conference Participant
        call: voice-conferences.addconferenceparticipant
        with:
          conference_id: rest.conference_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: voice-conferences-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telefonie 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
      with:
        status: tools.status
      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: $.
    - name: list-conference-participants
      description: List Conference Participants
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: voice-conferences.listconferenceparticipants
      with:
        conference_id: tools.conference_id
      outputParameters:
      - type: object
        mapping: $.
    - name: add-conference-participant
      description: Add Conference Participant
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: voice-conferences.addconferenceparticipant
      with:
        conference_id: tools.conference_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.