GoToWebinar · Capability

GoToWebinar REST API — Sessions

GoToWebinar REST API — Sessions. List past sessions for a webinar and pull session-scoped engagement data (polls, surveys, questions).

GoToWebinar REST API — Sessions 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 Sessions.

Run with Naftiko GoToWebinarSessions

Capability Spec

gotowebinar-sessions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GoToWebinar REST API — Sessions
  description: GoToWebinar REST API — Sessions. List past sessions for a webinar and pull session-scoped engagement data (polls, surveys, questions).
  tags:
    - GoToWebinar
    - Sessions
  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-sessions
      baseUri: https://api.getgo.com/G2W/rest/v2
      auth:
        type: bearer
        token: $env.GOTO_ACCESS_TOKEN
      resources:
        - name: list-sessions
          path: /organizers/{organizerKey}/webinars/{webinarKey}/sessions
          operations:
            - name: listSessions
              method: GET
              description: List all past sessions for a webinar.
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: array
                  value: $.
              inputParameters:
                - name: organizerKey
                  in: path
                  type: string
                  required: true
                  value: $env.GOTO_ORGANIZER_KEY
                - name: webinarKey
                  in: path
                  type: string
                  required: true