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 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.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
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.
kosmo integrations:call goto-webinar.gotowebinar_list_webinars '{"page":1,"size":1,"status":"example_status"}' --json 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.
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 - Parameters
- page, size, status
kosmo integrations:call goto-webinar.gotowebinar_list_webinars '{"page":1,"size":1,"status":"example_status"}' --json 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 - Parameters
- id
kosmo integrations:call goto-webinar.gotowebinar_get_webinar '{"id":"example_id"}' --json 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 - Parameters
- subject, times, description
kosmo integrations:call goto-webinar.gotowebinar_create_webinar '{"subject":"example_subject","times":"example_times","description":"example_description"}' --json 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 - Parameters
- webinar_id, page, size
kosmo integrations:call goto-webinar.gotowebinar_list_sessions '{"webinar_id":"example_webinar_id","page":1,"size":1}' --json 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 - Parameters
- webinar_id, id
kosmo integrations:call goto-webinar.gotowebinar_get_session '{"webinar_id":"example_webinar_id","id":"example_id"}' --json 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 - Parameters
- webinar_id, page, size
kosmo integrations:call goto-webinar.gotowebinar_list_panelists '{"webinar_id":"example_webinar_id","page":1,"size":1}' --json 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 - Parameters
- none
kosmo integrations:call goto-webinar.gotowebinar_get_current_user '{}' --json 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
kosmo integrations:schema goto-webinar.gotowebinar_list_webinars --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema goto-webinar.gotowebinar_get_webinar --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | The webinar key (webinar ID). |
goto-webinar.gotowebinar_create_webinar 3 parameters
kosmo integrations:schema goto-webinar.gotowebinar_create_webinar --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema goto-webinar.gotowebinar_list_sessions --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema goto-webinar.gotowebinar_get_session --json | Parameter | Type | Required | Description |
|---|---|---|---|
webinar_id | string | yes | The webinar key. |
id | string | yes | The session key (session ID). |
goto-webinar.gotowebinar_list_panelists 3 parameters
kosmo integrations:schema goto-webinar.gotowebinar_list_panelists --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema goto-webinar.gotowebinar_get_current_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| 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.