Magic Moment Call Log API

The call-log API from Magic Moment — 2 operation(s) for call-log.

Operations 3

GET /call-log Get call log #
POST /call-log Create Call log #
POST /call-log/miitel Create Call log for Miitel #

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-call-log-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-call-log-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Call Integration service連携アプリケーションAPI仕様
  title: Call Integration service連携アプリケーション Call Log API
  version: 1.0.0
servers:
- url: https://call.magicmoment.co.jp/
tags:
- name: call-log
paths:
  /call-log:
    get:
      security:
      - accessToken: []
      tags:
      - call-log
      summary: Get call log
      operationId: getCallLog
      parameters:
      - description: Call Sid
        name: call_sid
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  callLog:
                    type: object
                    properties:
                      from:
                        type: string
                      incoming_call_sid:
                        type: string
                      to:
                        type: string
                  providerType:
                    type: string
                    enum:
                    - TWILIO
    post:
      security:
      - accessToken: []
      tags:
      - call-log
      summary: Create Call log
      operationId: createCallLog
      responses:
        '200':
          description: OK
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - phoneType
              - parentCallSid
              - phoneNumber
              properties:
                callDirection:
                  type: string
                  enum:
                  - INCOMING
                  - OUTGOING
                contactId:
                  description: Contact ID
                  type: string
                  example: 6ca00f74-1351-11eb-adc1-0242ac120002
                engagementId:
                  description: Engagement ID
                  type: string
                  example: 6ca00f74-1351-11eb-adc1-0242ac120002
                parentCallSid:
                  description: Twilio Parent Call SID
                  type: string
                  example: CAb1f9321e569792fd03f4cce68dcc7e38
                phoneNumber:
                  description: Call to Phone Number
                  type: string
                  example: 123456789999
                repActivityId:
                  description: Rep Activity ID
                  type: string
                  example: 6ca00f74-1351-11eb-adc1-0242ac120002
        description: call log parameters
        required: true
  /call-log/miitel:
    post:
      security:
      - accessToken: []
      tags:
      - call-log
      summary: Create Call log for Miitel
      operationId: createCallLogForMiitel
      responses:
        '200':
          description: OK
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - phoneNumber
              - callDirection
              - callType
              properties:
                callDirection:
                  type: string
                  enum:
                  - INCOMING
                  - OUTGOING
                callDuration:
                  type: number
                callEndedAt:
                  type: string
                  format: date-time
                callStartedAt:
                  type: string
                  format: date-time
                callType:
                  type: string
                  enum:
                  - CALLED
                  - ABSENCE
                contactId:
                  description: Contact ID
                  type: string
                  example: 6ca00f74-1351-11eb-adc1-0242ac120002
                engagementId:
                  description: Engagement ID
                  type: string
                  example: 6ca00f74-1351-11eb-adc1-0242ac120002
                phoneNumber:
                  description: Call to Phone Number
                  type: string
                  example: 123456789999
                repActivityId:
                  description: Rep Activity ID
                  type: string
                  example: 6ca00f74-1351-11eb-adc1-0242ac120002
        description: call log parameters
        required: true
components:
  securitySchemes:
    accessToken:
      type: apiKey
      name: x-access-token
      in: header