Sinch · Capability

Sinch Voice API — Conferences

Sinch Voice API — Conferences. 4 operations. Lead operation: Get Conference Information. Self-contained Naftiko capability covering one Sinch business surface.

Run with Naftiko SinchConferences

What You Can Do

GET
Getconference — Get Conference Information
/v1/calling/v1/conferences/id/{conference-id}
DELETE
Kickallfromconference — Kick All Participants from Conference
/v1/calling/v1/conferences/id/{conference-id}
PATCH
Manageconferenceparticipant — Manage Conference Participant
/v1/calling/v1/conferences/id/{conference-id}/{call-id}
DELETE
Kickparticipantfromconference — Kick Participant from Conference
/v1/calling/v1/conferences/id/{conference-id}/{call-id}

MCP Tools

get-conference-information

Get Conference Information

read-only idempotent
kick-all-participants-conference

Kick All Participants from Conference

idempotent
manage-conference-participant

Manage Conference Participant

idempotent
kick-participant-conference

Kick Participant from Conference

idempotent

Capability Spec

voice-conferences.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sinch Voice API — Conferences
  description: 'Sinch Voice API — Conferences. 4 operations. Lead operation: Get Conference Information. Self-contained Naftiko
    capability covering one Sinch business surface.'
  tags:
  - Sinch
  - Conferences
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SINCH_API_KEY: SINCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: voice-conferences
    baseUri: https://calling.api.sinch.com
    description: Sinch Voice API — Conferences business capability. Self-contained, no shared references.
    resources:
    - name: calling-v1-conferences-id-conference_id
      path: /calling/v1/conferences/id/{conference_id}
      operations:
      - name: getconference
        method: GET
        description: Get Conference Information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: kickallfromconference
        method: DELETE
        description: Kick All Participants from Conference
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: calling-v1-conferences-id-conference_id-call_id
      path: /calling/v1/conferences/id/{conference_id}/{call_id}
      operations:
      - name: manageconferenceparticipant
        method: PATCH
        description: Manage Conference Participant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: kickparticipantfromconference
        method: DELETE
        description: Kick Participant from Conference
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.SINCH_USER}}'
      password: '{{env.SINCH_PASS}}'
  exposes:
  - type: rest
    namespace: voice-conferences-rest
    port: 8080
    description: REST adapter for Sinch Voice API — Conferences. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/calling/v1/conferences/id/{conference-id}
      name: calling-v1-conferences-id-conference-id
      description: REST surface for calling-v1-conferences-id-conference_id.
      operations:
      - method: GET
        name: getconference
        description: Get Conference Information
        call: voice-conferences.getconference
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: kickallfromconference
        description: Kick All Participants from Conference
        call: voice-conferences.kickallfromconference
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/calling/v1/conferences/id/{conference-id}/{call-id}
      name: calling-v1-conferences-id-conference-id-call-id
      description: REST surface for calling-v1-conferences-id-conference_id-call_id.
      operations:
      - method: PATCH
        name: manageconferenceparticipant
        description: Manage Conference Participant
        call: voice-conferences.manageconferenceparticipant
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: kickparticipantfromconference
        description: Kick Participant from Conference
        call: voice-conferences.kickparticipantfromconference
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: voice-conferences-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sinch Voice API — Conferences. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-conference-information
      description: Get Conference Information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: voice-conferences.getconference
      outputParameters:
      - type: object
        mapping: $.
    - name: kick-all-participants-conference
      description: Kick All Participants from Conference
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: voice-conferences.kickallfromconference
      outputParameters:
      - type: object
        mapping: $.
    - name: manage-conference-participant
      description: Manage Conference Participant
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: voice-conferences.manageconferenceparticipant
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: kick-participant-conference
      description: Kick Participant from Conference
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: voice-conferences.kickparticipantfromconference
      outputParameters:
      - type: object
        mapping: $.