GoToWebinar · Capability

GoToWebinar REST API — Co-Organizers

GoToWebinar REST API — Co-Organizers. Manage co-organizers attached to a webinar.

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

Run with Naftiko GoToWebinarCo-Organizers

Capability Spec

gotowebinar-co-organizers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GoToWebinar REST API — Co-Organizers
  description: GoToWebinar REST API — Co-Organizers. Manage co-organizers attached to a webinar.
  tags:
    - GoToWebinar
    - Co-Organizers
  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-coorganizers
      baseUri: https://api.getgo.com/G2W/rest/v2
      auth:
        type: bearer
        token: $env.GOTO_ACCESS_TOKEN
      resources:
        - name: coorganizers
          path: /organizers/{organizerKey}/webinars/{webinarKey}/coorganizers
          operations:
            - name: listCoorganizers
              method: GET
              description: List the co-organizers 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
            - name: createCoorganizers
              method: POST
              description: Add one or more co-organizers (internal or external) to a webinar.
              outputRawFormat: json
              inputParameters:
                - name: organizerKey
                  in: path
                  type: string
                  required: true
                  value: $env.GOTO_ORGANIZER_KEY
                - name: webinarKey
                  in: path
                  type: string
                  required: true
                - name: body
                  in: body
                  type: array
                  required: true
                  description: Array of coorganizer objects (email, givenName, surname, external).