GoToWebinar · Capability

GoToWebinar REST API — Recordings

GoToWebinar REST API — Recordings. List recording assets for an organizer's past webinars.

GoToWebinar REST API — Recordings is a Naftiko capability published by GoToWebinar, one of 8 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include GoToWebinar and Recordings.

Run with Naftiko GoToWebinarRecordings

Capability Spec

gotowebinar-recordings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GoToWebinar REST API — Recordings
  description: GoToWebinar REST API — Recordings. List recording assets for an organizer's past webinars.
  tags:
    - GoToWebinar
    - Recordings
  created: '2026-05-23'
  modified: '2026-05-23'
binds:
  - namespace: env
    keys:
      GOTO_ACCESS_TOKEN: GOTO_ACCESS_TOKEN
      GOTO_ORGANIZER_KEY: GOTO_ORGANIZER_KEY
capability:
  consumes:
    - type: http
      namespace: gotowebinar-recordings
      baseUri: https://api.getgo.com/G2W/rest/v2
      auth:
        type: bearer
        token: $env.GOTO_ACCESS_TOKEN
      resources:
        - name: recording-assets
          path: /organizers/{organizerKey}/recordingassets
          operations:
            - name: listRecordingAssets
              method: GET
              description: List recording assets for an organizer in a time range.
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: array
                  value: $.
              inputParameters:
                - name: organizerKey
                  in: path
                  type: string
                  required: true
                  value: $env.GOTO_ORGANIZER_KEY
                - name: fromTime
                  in: query
                  type: string
                  required: false
                - name: toTime
                  in: query
                  type: string
                  required: false