Magic Moment Conference API

The conference API from Magic Moment — 3 operation(s) for conference.

Operations 4

GET /call-providers/{settingId}/conference Get xml setting for hold music #
POST /call-providers/{settingId}/conference Get xml setting for creating conference #
POST /call-providers/{settingId}/conference/join-callback Show xml setting for redirect call from phone numer to web client #
POST /call-providers/{settingId}/conference/status Hold / un-Hold the call by change conference status #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/magic-moment-conference-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

magic-moment-conference-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Call Integration service連携アプリケーションAPI仕様
  title: Call Integration service連携アプリケーション Conference API
  version: 1.0.0
servers:
- url: https://call.magicmoment.co.jp/
tags:
- name: conference
paths:
  /call-providers/{settingId}/conference:
    get:
      tags:
      - conference
      summary: Get xml setting for hold music
      operationId: ConferenceHoldMusic
      parameters:
      - name: settingId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Response XML type for Twilio
          content:
            text/xml:
              schema:
                type: object
                $ref: '#/components/schemas/Response'
    post:
      tags:
      - conference
      summary: Get xml setting for creating conference
      operationId: ConferenceCreate
      parameters:
      - name: settingId
        in: path
        required: true
        schema:
          type: string
      - description: client name for Twilio client
        name: client_name
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Response XML type for Twilio
          content:
            application/xml:
              schema:
                type: object
                $ref: '#/components/schemas/Response'
        '201':
          description: Response XML type for busy call
          content:
            application/xml:
              schema:
                type: object
                $ref: '#/components/schemas/Response'
  /call-providers/{settingId}/conference/join-callback:
    post:
      tags:
      - conference
      summary: Show xml setting for redirect call from phone numer to web client
      operationId: ClientReceiveCallXml
      parameters:
      - name: settingId
        in: path
        required: true
        schema:
          type: string
      - description: client name for Twilio client
        name: client_name
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Response XML type for Twilio
          content:
            text/xml:
              schema:
                type: object
                $ref: '#/components/schemas/Response'
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                ConferenceSid:
                  type: string
                  description: params ConferenceSid from twilio
                CallSid:
                  type: string
                  description: params CallSid from twilio
              required:
              - ConferenceSid
              - CallSid
  /call-providers/{settingId}/conference/status:
    post:
      security:
      - accessToken: []
      tags:
      - conference
      summary: Hold / un-Hold the call by change conference status
      operationId: ChangeConferenceStatus
      parameters:
      - name: settingId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - status
              - callSid
              - direction
              properties:
                callSid:
                  description: Twilio Call SID
                  type: string
                  example: CA6ae92bb9705c8e8770852257a620422b
                direction:
                  description: Call type incoming call or outgoing call
                  type: string
                  enum:
                  - INCOMING
                  - OUTGOING
                status:
                  description: Status hold / unhold / completed
                  type: string
                  enum:
                  - HOLD
                  - UNHOLD
                  - COMPLETED
        description: setting for conference status
        required: true
components:
  schemas:
    Response:
      description: xml response for TwiML
      type: object
      properties:
        Dial:
          type: object
          properties:
            CallerId:
              type: string
              xml:
                name: callerId
                attribute: true
            Client:
              type: object
              properties:
                value:
                  type: string
                  xml:
                    name: ',chardata'
                  example: client_name
            Conference:
              type: object
              properties:
                beep:
                  type: string
                  xml:
                    name: beep
                    attribute: true
                endConferenceOnExit:
                  type: string
                  xml:
                    name: endConferenceOnExit
                    attribute: true
                startConferenceOnEnter:
                  type: string
                  xml:
                    name: startConferenceOnEnter
                    attribute: true
                statusCallback:
                  type: string
                  xml:
                    name: statusCallback
                    attribute: true
                statusCallbackEvent:
                  type: string
                  xml:
                    name: statusCallbackEvent
                    attribute: true
                value:
                  type: string
                  xml:
                    name: ',chardata'
                  example: conference name
                waitUrl:
                  type: string
                  xml:
                    name: waitUrl
                    attribute: true
            value:
              type: string
              xml:
                name: ',chardata'
              example: To xxx
        Play:
          type: object
          properties:
            loop:
              type: string
              xml:
                name: loop
                attribute: true
            value:
              type: string
              xml:
                name: ',chardata'
              example: music url
        Say:
          type: object
          properties:
            language:
              type: string
              xml:
                name: language
                attribute: true
            value:
              type: string
              xml:
                name: ',chardata'
              example: Say something
            voice:
              type: string
              xml:
                name: voice
                attribute: true
  securitySchemes:
    accessToken:
      type: apiKey
      name: x-access-token
      in: header