Hopin
The Hopin Ads Connector provides automated access to the Hopin API
The connector iterates over all the organizations and events to which your credentials provide access using the API (unless it is specifically indicated to skip over them).
Prerequisites
- API Key
- A user-unique API key that will be provided to you by Hopin
Scheduling
The Hopin Ads connector can be scheduled to ingest data once per day at a user-defined hour and timezone.
By default, the connector will run once at 6am PT.
See Daily Scheduling for more information.
Parameters
- project_name string
- required
- name of the project to which the download is performed. Could be any value.
- skip_organization_ids list of strings
- optional
- identifier of an organization to skip when iterating over data
- skip_event_ids list of strings
- optional
- identifier of an event to skip over when iterating over data
Sample Switchboard Script
download bundle t {
type: "hopin:event_bundle";
key: "hopin_key";
project_name: "hopin";
skip_organization_ids: [...];
skip_event_ids: [...];
table events using {*};
table organizations using {*};
table attendee_activities using {*};
table mid_event_attendee_scores using {*};
table post_event_survey_feedback using {*};
table q_and_a using {*};
table viewership_count using {*};
table event_chat using {*};
table connections using {*};
table scheduled_meetings using {*};
table speed_networking using {*};
table participation_duration using {*};
table poll_results using {*};
table registrants using {*};
table segment_registrations using {*};
table replay_recordings using {*};
table replay_viewers using {*};
table schedule using {*};
table attendees using {*};
table my_agenda using {*};
table no_show_registrants using {*};
table segment_stages_summary using {*};
table summary using {*};
};