RingCentral · Capability

RingCentral API — Meeting Recordings

RingCentral API — Meeting Recordings. 2 operations. Lead operation: List User Recordings. Self-contained Naftiko capability covering one Ringcentral business surface.

Run with Naftiko RingcentralMeeting Recordings

What You Can Do

GET
Getextensionrecordings — List User Recordings
/v1/rcvideo/v1/account/{accountid}/extension/{extensionid}/recordings
GET
Getaccountrecordings — List Account Recordings
/v1/rcvideo/v1/account/{accountid}/recordings

MCP Tools

list-user-recordings

List User Recordings

read-only idempotent
list-account-recordings

List Account Recordings

read-only idempotent

Capability Spec

platform-meeting-recordings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RingCentral API — Meeting Recordings
  description: 'RingCentral API — Meeting Recordings. 2 operations. Lead operation: List User Recordings. Self-contained Naftiko
    capability covering one Ringcentral business surface.'
  tags:
  - Ringcentral
  - Meeting 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-meeting-recordings
    baseUri: https://platform.ringcentral.com
    description: RingCentral API — Meeting Recordings business capability. Self-contained, no shared references.
    resources:
    - name: rcvideo-v1-account-accountId-extension-extensionId-recordings
      path: /rcvideo/v1/account/{accountId}/extension/{extensionId}/recordings
      operations:
      - name: getextensionrecordings
        method: GET
        description: List User Recordings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: rcvideo-v1-account-accountId-recordings
      path: /rcvideo/v1/account/{accountId}/recordings
      operations:
      - name: getaccountrecordings
        method: GET
        description: List Account Recordings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.RINGCENTRAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-meeting-recordings-rest
    port: 8080
    description: REST adapter for RingCentral API — Meeting Recordings. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/rcvideo/v1/account/{accountid}/extension/{extensionid}/recordings
      name: rcvideo-v1-account-accountid-extension-extensionid-recordings
      description: REST surface for rcvideo-v1-account-accountId-extension-extensionId-recordings.
      operations:
      - method: GET
        name: getextensionrecordings
        description: List User Recordings
        call: platform-meeting-recordings.getextensionrecordings
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/rcvideo/v1/account/{accountid}/recordings
      name: rcvideo-v1-account-accountid-recordings
      description: REST surface for rcvideo-v1-account-accountId-recordings.
      operations:
      - method: GET
        name: getaccountrecordings
        description: List Account Recordings
        call: platform-meeting-recordings.getaccountrecordings
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-meeting-recordings-mcp
    port: 9090
    transport: http
    description: MCP adapter for RingCentral API — Meeting Recordings. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-user-recordings
      description: List User Recordings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-meeting-recordings.getextensionrecordings
      outputParameters:
      - type: object
        mapping: $.
    - name: list-account-recordings
      description: List Account Recordings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-meeting-recordings.getaccountrecordings
      outputParameters:
      - type: object
        mapping: $.