RingCentral · Capability

RingCentral API — Call Recordings

RingCentral API — Call Recordings. 3 operations. Lead operation: Delete Company Call Recordings. Self-contained Naftiko capability covering one Ringcentral business surface.

Run with Naftiko RingcentralCall Recordings

What You Can Do

DELETE
Deletecompanycallrecordings — Delete Company Call Recordings
/v1/restapi/v1-0/account/{accountid}/call-recordings
GET
Readcallrecording — Get Call Recording
/v1/restapi/v1-0/account/{accountid}/recording/{recordingid}
GET
Readcallrecordingcontent — Get Call Recording Content
/v1/restapi/v1-0/account/{accountid}/recording/{recordingid}/content

MCP Tools

delete-company-call-recordings

Delete Company Call Recordings

idempotent
get-call-recording

Get Call Recording

read-only idempotent
get-call-recording-content

Get Call Recording Content

read-only idempotent

Capability Spec

platform-call-recordings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RingCentral API — Call Recordings
  description: 'RingCentral API — Call Recordings. 3 operations. Lead operation: Delete Company Call Recordings. Self-contained
    Naftiko capability covering one Ringcentral business surface.'
  tags:
  - Ringcentral
  - Call Recordings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RINGCENTRAL_API_KEY: RINGCENTRAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-call-recordings
    baseUri: https://platform.ringcentral.com
    description: RingCentral API — Call Recordings business capability. Self-contained, no shared references.
    resources:
    - name: restapi-v1.0-account-accountId-call-recordings
      path: /restapi/v1.0/account/{accountId}/call-recordings
      operations:
      - name: deletecompanycallrecordings
        method: DELETE
        description: Delete Company Call Recordings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: restapi-v1.0-account-accountId-recording-recordingId
      path: /restapi/v1.0/account/{accountId}/recording/{recordingId}
      operations:
      - name: readcallrecording
        method: GET
        description: Get Call Recording
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: restapi-v1.0-account-accountId-recording-recordingId-content
      path: /restapi/v1.0/account/{accountId}/recording/{recordingId}/content
      operations:
      - name: readcallrecordingcontent
        method: GET
        description: Get Call Recording Content
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.RINGCENTRAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-call-recordings-rest
    port: 8080
    description: REST adapter for RingCentral API — Call Recordings. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/restapi/v1-0/account/{accountid}/call-recordings
      name: restapi-v1-0-account-accountid-call-recordings
      description: REST surface for restapi-v1.0-account-accountId-call-recordings.
      operations:
      - method: DELETE
        name: deletecompanycallrecordings
        description: Delete Company Call Recordings
        call: platform-call-recordings.deletecompanycallrecordings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/restapi/v1-0/account/{accountid}/recording/{recordingid}
      name: restapi-v1-0-account-accountid-recording-recordingid
      description: REST surface for restapi-v1.0-account-accountId-recording-recordingId.
      operations:
      - method: GET
        name: readcallrecording
        description: Get Call Recording
        call: platform-call-recordings.readcallrecording
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/restapi/v1-0/account/{accountid}/recording/{recordingid}/content
      name: restapi-v1-0-account-accountid-recording-recordingid-content
      description: REST surface for restapi-v1.0-account-accountId-recording-recordingId-content.
      operations:
      - method: GET
        name: readcallrecordingcontent
        description: Get Call Recording Content
        call: platform-call-recordings.readcallrecordingcontent
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-call-recordings-mcp
    port: 9090
    transport: http
    description: MCP adapter for RingCentral API — Call Recordings. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: delete-company-call-recordings
      description: Delete Company Call Recordings
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-call-recordings.deletecompanycallrecordings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-call-recording
      description: Get Call Recording
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-call-recordings.readcallrecording
      outputParameters:
      - type: object
        mapping: $.
    - name: get-call-recording-content
      description: Get Call Recording Content
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-call-recordings.readcallrecordingcontent
      outputParameters:
      - type: object
        mapping: $.