KosmoKrator

productivity

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.

GoTo Webinar CLI Setup

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

Install, configure, and verify
# 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 reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

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

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

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

Discovery

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

Discovery commands
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

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

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.

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

goto-webinar.gotowebinar_get_webinar

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

Read read
Parameters
id
Generic call
kosmo integrations:call goto-webinar.gotowebinar_get_webinar '{"id":"example_id"}' --json
Shortcut
kosmo integrations:goto-webinar gotowebinar_get_webinar '{"id":"example_id"}' --json

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.

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

goto-webinar.gotowebinar_list_sessions

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

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

goto-webinar.gotowebinar_get_session

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

Read read
Parameters
webinar_id, id
Generic call
kosmo integrations:call goto-webinar.gotowebinar_get_session '{"webinar_id":"example_webinar_id","id":"example_id"}' --json
Shortcut
kosmo integrations:goto-webinar gotowebinar_get_session '{"webinar_id":"example_webinar_id","id":"example_id"}' --json

goto-webinar.gotowebinar_list_panelists

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

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

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.

Read read
Parameters
none
Generic call
kosmo integrations:call goto-webinar.gotowebinar_get_current_user '{}' --json
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 3 parameters
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 1 parameters
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 3 parameters
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 3 parameters
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 2 parameters
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 3 parameters
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 0 parameters
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.