KosmoKrator

communication

GoTo Webinar CLI for AI Agents

Use the GoTo Webinar CLI from KosmoKrator to call GoTo Webinar tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

7 functions 6 read 1 write Manual OAuth token auth

GoTo Webinar CLI Setup

GoTo Webinar can be configured headlessly with `kosmokrator integrations:configure goto-webinar`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure goto-webinar --set access_token="$GOTO_WEBINAR_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor goto-webinar --json
kosmokrator integrations:status --json

Credentials

Authentication type: Manual OAuth token oauth2_manual_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
access_token GOTO_WEBINAR_ACCESS_TOKEN Secret secret yes Access Token
url GOTO_WEBINAR_URL URL url no API Base URL

Call GoTo Webinar Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call goto-webinar.gotowebinar_list_webinars '{
  "page": 1,
  "size": 1,
  "status": "example_status"
}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:goto-webinar gotowebinar_list_webinars '{
  "page": 1,
  "size": 1,
  "status": "example_status"
}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

kosmo integrations:docs goto-webinar --json
kosmo integrations:docs goto-webinar.gotowebinar_list_webinars --json
kosmo integrations:schema goto-webinar.gotowebinar_list_webinars --json
kosmo integrations:search "GoTo Webinar" --json
kosmo integrations:list --json

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to GoTo Webinar.

goto-webinar.gotowebinar_list_webinars

Read read

List webinars from GoTo Webinar. Returns upcoming, in-progress, and past webinars. Use the status parameter to filter by webinar state.

Parameters
page, size, status

Generic CLI call

kosmo integrations:call goto-webinar.gotowebinar_list_webinars '{"page":1,"size":1,"status":"example_status"}' --json

Provider shortcut

kosmo integrations:goto-webinar gotowebinar_list_webinars '{"page":1,"size":1,"status":"example_status"}' --json

goto-webinar.gotowebinar_get_webinar

Read read

Get detailed information about a specific webinar, including schedule, registration settings, and organizer details.

Parameters
id

Generic CLI call

kosmo integrations:call goto-webinar.gotowebinar_get_webinar '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:goto-webinar gotowebinar_get_webinar '{"id":"example_id"}' --json

goto-webinar.gotowebinar_create_webinar

Write write

Schedule a new webinar in GoTo Webinar. Provide a subject, one or more time slots (each with startTime and endTime in ISO 8601 format), and an optional description.

Parameters
subject, times, description

Generic CLI call

kosmo integrations:call goto-webinar.gotowebinar_create_webinar '{"subject":"example_subject","times":"example_times","description":"example_description"}' --json

Provider shortcut

kosmo integrations:goto-webinar gotowebinar_create_webinar '{"subject":"example_subject","times":"example_times","description":"example_description"}' --json

goto-webinar.gotowebinar_list_sessions

Read read

List all sessions for a specific webinar. Each session represents one occurrence of a webinar (useful for recurring webinars).

Parameters
webinar_id, page, size

Generic CLI call

kosmo integrations:call goto-webinar.gotowebinar_list_sessions '{"webinar_id":"example_webinar_id","page":1,"size":1}' --json

Provider shortcut

kosmo integrations:goto-webinar gotowebinar_list_sessions '{"webinar_id":"example_webinar_id","page":1,"size":1}' --json

goto-webinar.gotowebinar_get_session

Read read

Get detailed information about a specific webinar session, including attendance, duration, and participant statistics.

Parameters
webinar_id, id

Generic CLI call

kosmo integrations:call goto-webinar.gotowebinar_get_session '{"webinar_id":"example_webinar_id","id":"example_id"}' --json

Provider shortcut

kosmo integrations:goto-webinar gotowebinar_get_session '{"webinar_id":"example_webinar_id","id":"example_id"}' --json

goto-webinar.gotowebinar_list_panelists

Read read

List all panelists for a specific webinar. Panelists are featured speakers who have enhanced permissions during the webinar.

Parameters
webinar_id, page, size

Generic CLI call

kosmo integrations:call goto-webinar.gotowebinar_list_panelists '{"webinar_id":"example_webinar_id","page":1,"size":1}' --json

Provider shortcut

kosmo integrations:goto-webinar gotowebinar_list_panelists '{"webinar_id":"example_webinar_id","page":1,"size":1}' --json

goto-webinar.gotowebinar_get_current_user

Read read

Get the profile of the currently authenticated GoTo Webinar user. Useful for verifying credentials and identifying the organizer account.

Parameters
none

Generic CLI call

kosmo integrations:call goto-webinar.gotowebinar_get_current_user '{}' --json

Provider shortcut

kosmo integrations:goto-webinar gotowebinar_get_current_user '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

goto-webinar.gotowebinar_list_webinars

List webinars from GoTo Webinar. Returns upcoming, in-progress, and past webinars. Use the status parameter to filter by webinar state.

Operation
Read read
Schema command
kosmo integrations:schema goto-webinar.gotowebinar_list_webinars --json
ParameterTypeRequiredDescription
page integer no Page number for pagination (0-based, default: 0).
size integer no Number of results per page (default: 20, max: 200).
status string no Filter by webinar status: "ACTIVE", "IN_SESSION", "ENDED", "CANCELED". Omit to list all.

goto-webinar.gotowebinar_get_webinar

Get detailed information about a specific webinar, including schedule, registration settings, and organizer details.

Operation
Read read
Schema command
kosmo integrations:schema goto-webinar.gotowebinar_get_webinar --json
ParameterTypeRequiredDescription
id string yes The webinar key (webinar ID).

goto-webinar.gotowebinar_create_webinar

Schedule a new webinar in GoTo Webinar. Provide a subject, one or more time slots (each with startTime and endTime in ISO 8601 format), and an optional description.

Operation
Write write
Schema command
kosmo integrations:schema goto-webinar.gotowebinar_create_webinar --json
ParameterTypeRequiredDescription
subject string yes The webinar subject/title.
times array yes Array of time slots. Each slot must have "startTime" and "endTime" in ISO 8601 format (e.g., "2026-04-10T15:00:00Z").
description string no Optional description of the webinar.

goto-webinar.gotowebinar_list_sessions

List all sessions for a specific webinar. Each session represents one occurrence of a webinar (useful for recurring webinars).

Operation
Read read
Schema command
kosmo integrations:schema goto-webinar.gotowebinar_list_sessions --json
ParameterTypeRequiredDescription
webinar_id string yes The webinar key.
page integer no Page number for pagination (0-based, default: 0).
size integer no Number of results per page (default: 20, max: 200).

goto-webinar.gotowebinar_get_session

Get detailed information about a specific webinar session, including attendance, duration, and participant statistics.

Operation
Read read
Schema command
kosmo integrations:schema goto-webinar.gotowebinar_get_session --json
ParameterTypeRequiredDescription
webinar_id string yes The webinar key.
id string yes The session key (session ID).

goto-webinar.gotowebinar_list_panelists

List all panelists for a specific webinar. Panelists are featured speakers who have enhanced permissions during the webinar.

Operation
Read read
Schema command
kosmo integrations:schema goto-webinar.gotowebinar_list_panelists --json
ParameterTypeRequiredDescription
webinar_id string yes The webinar key.
page integer no Page number for pagination (0-based, default: 0).
size integer no Number of results per page (default: 20, max: 200).

goto-webinar.gotowebinar_get_current_user

Get the profile of the currently authenticated GoTo Webinar user. Useful for verifying credentials and identifying the organizer account.

Operation
Read read
Schema command
kosmo integrations:schema goto-webinar.gotowebinar_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.