Zoom · Capability

Zoom Meeting API — Meeting Recordings

Zoom Meeting API — Meeting Recordings. 2 operations. Lead operation: Zoom Get Meeting Recordings. Self-contained Naftiko capability covering one Zoom business surface.

Run with Naftiko ZoomMeeting Recordings

What You Can Do

GET
Getmeetingrecordings — Zoom Get Meeting Recordings
/v1/meetings/{meetingid}/recordings
DELETE
Deletemeetingrecordings — Zoom Delete Meeting Recordings
/v1/meetings/{meetingid}/recordings

MCP Tools

zoom-get-meeting-recordings

Zoom Get Meeting Recordings

read-only idempotent
zoom-delete-meeting-recordings

Zoom Delete Meeting Recordings

idempotent

Capability Spec

meeting-meeting-recordings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Zoom Meeting API — Meeting Recordings
  description: 'Zoom Meeting API — Meeting Recordings. 2 operations. Lead operation: Zoom Get Meeting Recordings. Self-contained
    Naftiko capability covering one Zoom business surface.'
  tags:
  - Zoom
  - Meeting Recordings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ZOOM_API_KEY: ZOOM_API_KEY
capability:
  consumes:
  - type: http
    namespace: meeting-meeting-recordings
    baseUri: https://api.zoom.us/v2
    description: Zoom Meeting API — Meeting Recordings business capability. Self-contained, no shared references.
    resources:
    - name: meetings-meetingId-recordings
      path: /meetings/{meetingId}/recordings
      operations:
      - name: getmeetingrecordings
        method: GET
        description: Zoom Get Meeting Recordings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: include_fields
          in: query
          type: string
          description: Additional fields to include in the response.
        - name: ttl
          in: query
          type: integer
          description: Time to live in seconds for the download URL.
      - name: deletemeetingrecordings
        method: DELETE
        description: Zoom Delete Meeting Recordings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: action
          in: query
          type: string
          description: Delete action. `trash` moves to trash. `delete` permanently deletes.
    authentication:
      type: bearer
      token: '{{env.ZOOM_API_KEY}}'
  exposes:
  - type: rest
    namespace: meeting-meeting-recordings-rest
    port: 8080
    description: REST adapter for Zoom Meeting API — Meeting Recordings. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/meetings/{meetingid}/recordings
      name: meetings-meetingid-recordings
      description: REST surface for meetings-meetingId-recordings.
      operations:
      - method: GET
        name: getmeetingrecordings
        description: Zoom Get Meeting Recordings
        call: meeting-meeting-recordings.getmeetingrecordings
        with:
          include_fields: rest.include_fields
          ttl: rest.ttl
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletemeetingrecordings
        description: Zoom Delete Meeting Recordings
        call: meeting-meeting-recordings.deletemeetingrecordings
        with:
          action: rest.action
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: meeting-meeting-recordings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Zoom Meeting API — Meeting Recordings. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: zoom-get-meeting-recordings
      description: Zoom Get Meeting Recordings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: meeting-meeting-recordings.getmeetingrecordings
      with:
        include_fields: tools.include_fields
        ttl: tools.ttl
      outputParameters:
      - type: object
        mapping: $.
    - name: zoom-delete-meeting-recordings
      description: Zoom Delete Meeting Recordings
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: meeting-meeting-recordings.deletemeetingrecordings
      with:
        action: tools.action
      outputParameters:
      - type: object
        mapping: $.