Skip to main content

GoTo Webinar Connector

GoTo Webinar GoTo Webinar is a platform for hosting, managing, and attending live or pre-recorded webinars. This component allows scheduling, managing, and subscribing to webinars, registrants, and attendees.

API Documentation

This component was built using the GoTo Webinar 2.0 REST API.

Connections

OAuth 2.0

Authenticate requests to GoTo Webinar using OAuth 2.0.

To connect to GoTo Webinar, create an OAuth client in the GoTo Developer portal.

Prerequisites

  • A GoTo Developer account
  • An Organizer Key for the GoTo Webinar account

Setup Steps

  1. In the GoTo Developer portal, navigate to OAuth Clients and choose Create a client to create a new client.
  2. If clients already exist, they are listed here. Scroll to the bottom of this listing and select Create a New Client.
  3. On the Details page, enter a Client name, an optional Description, and enter the Redirect URI as https://oauth2.integrations.acme.com/callback.
  4. On the next page, select the proper scopes needed for a GoTo Webinar integration.
  5. The next page provides the Client ID and Client Secret. Take note of these values along with the assigned scopes from the previous page.

Configure the Connection

  • Enter the Client ID and Client Secret from the OAuth client.
  • For Scopes, enter the space-separated scopes assigned to the OAuth client.
  • Enter the Organizer Key for the GoTo Webinar account.

This connection uses OAuth 2.0, a common authentication mechanism for integrations. Read about how OAuth 2.0 works here.

InputCommentsDefault
ScopesSpace separated list of OAuth2 scopes for GoTo Webinar.identity:scim.me collab:
Client IDThe OAuth2 Client ID for GoTo Webinar.
Client SecretThe OAuth2 Client Secret for GoTo Webinar.
Organizer KeyThe GoTo Webinar Organizer Key.

Triggers

New Registrants

Fetches new registrants added to a GoTo Webinar webinar on a configured schedule.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.

User Subscription

Receive event notifications from GoTo Webinar. Automatically creates and manages a webhook subscription for the selected event when the instance is deployed, and removes the subscription when the instance is deleted.

InputCommentsDefault
Connection
Event NameThe event to subscribe to.
Event VersionThe schema version of the event payload to receive.1.0.0

Actions

Cancel Webinar

Cancels a specific webinar.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
Send Cancellation EmailIndicates whether cancellation notice emails should be sent. Default behavior is false.
Delete AllSpecifies whether all scheduled sessions should be deleted if the webinar is part of a series. Default behavior is true.false

Create Registrant

Register an attendee for a scheduled webinar.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
First NameThe first name of the registrant.
Last NameThe last name of the registrant.
EmailThe email address of the registrant.
SourceThe source that led to the registration. This can be any string like 'Newsletter 123' or 'Marketing campaign ABC'.
AddressThe street address of the registrant.
CityThe city of the registrant.
StateThe state or province of the registrant.
Zip CodeThe postal code of the registrant.
CountryThe country of the registrant.
PhoneThe phone number of the registrant.
OrganizationThe organization the registrant belongs to.
Job TitleThe job title of the registrant.
Questions and CommentsAny questions or comments submitted by the registrant.
IndustryThe industry the registrant works in.
Number of EmployeesThe number of employees in the registrant's organization.
Purchasing Time FrameThe time frame within which the product will be purchased.
Purchasing RoleThe role of the registrant in the purchasing process.
ResponsesThe answers to the webinar's custom registration questions. Provide a JSON array of question/response objects.

Create User Subscription

Create a new user subscription as a webhook.

InputCommentsDefault
Connection
Webhook URLThe HTTPS URL that receives posted webhook events. The endpoint must return 200 OK for GET requests.
Event NameThe event to subscribe to.
Event VersionThe schema version of the event payload to receive.1.0.0

Create Webinar

Creates a single session webinar, a sequence of webinars, or a series of webinars.

InputCommentsDefault
Connection
SubjectThe title displayed for the webinar.
DescriptionA summary of what the webinar covers.
Webinar TypeThe scheduling format for the webinar. Select 'Single Session' for a one-time event, 'Series' for multiple related sessions, or 'Sequence' for an ordered set of sessions.
Experience TypeThe experience type of the webinar.CLASSIC
Time Range for WebinarTime Range Array for the webinar. Please note that the examples provided describe the expected payload given all webinar types. Only one array should be used based on the webinar type.
TimezoneThe time zone where the webinar is taking place (must be a valid time zone ID). If this parameter is not passed, the timezone of the organizer's profile will be used.
LocaleThe language and region used for the webinar's display text.
Recording Asset KeyThe recording asset with which the simulive webinar should be created from. In case the recordingasset was created as an online recording the simulive webinar settings, poll and surveys would be copied from the webinar whose session was recorded.
Is On DemandA boolean flag indicating if the webinar should be On-Demand.false
Is BreakoutA boolean flag indicating if the webinar should be breakout.false
Is Password ProtectedIndicates if the webinar is password protected.false
Should Send Confirmation EmailWhether or not to send a confirmation email to the registrants.
Should Send Reminder EmailWhether or not to send a reminder email to the registrants.
Should Send Absentee Follow Up EmailWhether or not to send an absentee follow up email to the registrants.
Should Send Attendee Follow Up EmailWhether or not to send an attendee follow up email to the registrants.

Delete Instanced Subscriptions

Delete all subscriptions that point to a flow in this instance.

InputCommentsDefault
Connection

Delete Registrant

Removes a webinar registrant from current registrations for the specified webinar. The webinar must be a scheduled, future webinar.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
Registrant KeyThe unique identifier for the registrant.

Delete User Subscriptions

Deletes one or more user subscriptions.

InputCommentsDefault
Connection
User Subscription KeysThe user subscription keys to act upon. Provide a JSON array of key strings.
Delete WebhooksWhen true, the affiliated webhook is deleted along with the user subscription. Note that deleting the webhook will also delete any other user subscriptions tied to the corresponding webhook key.false

Get Attendee

Retrieve registration details for a particular attendee of a specific webinar session.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
Session KeyThe unique identifier for the webinar session.
Registrant KeyThe unique identifier for the registrant.

Get Registrant

Retrieve registration details for a specific registrant.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
Registrant KeyThe unique identifier for the registrant.

Get User Subscription

Retrieve a user subscription by User Subscription Key.

InputCommentsDefault
Connection
User Subscription KeyThe unique identifier for the user subscription.

Get Webinars

Returns upcoming and past webinars for the currently authenticated organizer that are scheduled within the specified date/time range.

InputCommentsDefault
Connection
From TimeThe start of the date/time range to query, in ISO 8601 UTC format. Format: YYYY-MM-DDThh:mm:ssZ.
To TimeThe end of the date/time range to query, in ISO 8601 UTC format. Format: YYYY-MM-DDThh:mm:ssZ.
Fetch AllWhen true, automatically fetches all pages of results using pagination. When false, only the first page is fetched.false
Page NumberThe zero-based index of the page to return. The first page is 0.
Page SizeThe maximum number of results to return per page. The maximum value is 200.
Account KeyThe unique identifier for the account. When provided instead of the organizer key, the action retrieves webinars scoped to this account.

List Attendees

Retrieve all attendees for all sessions of the specified webinar.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
Fetch AllWhen true, automatically fetches all pages of results using pagination. When false, only the first page is fetched.false

List Registrants

Retrieve registration details for all registrants of a specific webinar.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
Page NumberThe zero-based index of the page to return. The first page is 0.
Page SizeThe maximum number of results to return per page. The maximum value is 200.

List Session Attendees

Retrieve details for all attendees of a specific webinar session.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
Session KeyThe unique identifier for the webinar session.

List User Subscriptions

Retrieve a list of user subscriptions.

InputCommentsDefault
Connection

Raw Request

Send a raw HTTP request to GoTo Webinar.

InputCommentsDefault
Connection
URLInput the path only (/organizers), The base URL is already included. For example, in order to send a webinar request, only /organizer/{organizerKey}/webinars is entered in this field.
MethodThe HTTP method to use.
DataThe HTTP body payload to send to the URL.
Form DataThe Form Data to be sent as a multipart form upload.
File DataFile Data to be sent as a multipart form upload.
File Data File NamesFile names to apply to the file data inputs. Keys must match the file data keys above.
Query ParameterA list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.
HeaderA list of headers to send with the request.
Response TypeThe type of data you expect in the response. You can request json, text, or binary data.json
TimeoutThe maximum time that a client will await a response to its request
Retry Delay (ms)The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled.0
Retry On All ErrorsIf true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors.false
Max Retry CountThe maximum number of retries to attempt. Specify 0 for no retries.0
Use Exponential BackoffSpecifies whether to use a pre-defined exponential backoff strategy for retries. When enabled, 'Retry Delay (ms)' is ignored.false

Update User Subscription

Updates an existing user subscription.

InputCommentsDefault
Connection
Webhook KeyThe unique identifier for the webhook to update.
User Subscription KeyThe unique identifier for the user subscription to update.
User Subscription StateThe status to apply to the user subscription.
Webhook URLThe HTTPS URL that receives posted webhook events. The endpoint must return 200 OK for GET requests.

Update Webinar

Updates a specific webinar.

InputCommentsDefault
Connection
Webinar KeyThe unique identifier for the webinar.
Notify ParticipantsNotify participants of the webinar.false
SubjectThe title displayed for the webinar.
DescriptionA summary of what the webinar covers.
Time Range for WebinarThe time range of the webinar.
TimezoneThe time zone where the webinar is taking place (must be a valid time zone ID). If this parameter is not passed, the timezone of the organizer's profile will be used.
LocaleThe language and region used for the webinar's display text.
Should Send Confirmation EmailWhether or not to send a confirmation email to the registrants.
Should Send Reminder EmailWhether or not to send a reminder email to the registrants.
Should Send Absentee Follow Up EmailWhether or not to send an absentee follow up email to the registrants.
Should Send Attendee Follow Up EmailWhether or not to send an attendee follow up email to the registrants.