← WebinarGeek + Airtable integrations

List Records in View with Airtable API on New Payment from WebinarGeek API

Pipedream makes it easy to connect APIs for Airtable, WebinarGeek and 1400+ other apps remarkably fast.

Trigger workflow on
New Payment from the WebinarGeek API
Next, do this
List Records in View with the Airtable API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

This integration creates a workflow with a WebinarGeek trigger and Airtable action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Payment trigger
    1. Connect your WebinarGeek account
    2. Configure timer
  3. Configure the List Records in View action
    1. Connect your Airtable account
    2. Select a Base
    3. Select a Table
    4. Select a View
    5. Optional- Select a Sort: Field
    6. Optional- Select a Sort: Direction
    7. Optional- Configure Max Records
    8. Optional- Configure Filter by Formula
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event on each new payment.
Version:0.0.3
Key:webinargeek-new-payment

WebinarGeek Overview

You can build a lot of things with the WebinarGeek API! WebinarGeek enables you
to effortlessly create and manage successful webinars and online events,
featuring all the necessary features – streaming, engagement, and analytics.

Using the WebinarGeek API, you can create features and services to increase
your webinar's reach and engagement. Here are some examples:

  • Automated Messages: You could use the API to create automated messages,
    allowing you to instantly respond to your audience and schedule reminders for
    upcoming webinars.
  • Gamification: Create gamification elements to keep your attendees engaged,
    such as quizzes, interactive polls, and leaderboards.
  • Custom Themes: Customize the look and feel of your webinars with the API to
    create an immersive experience for your audience.
  • Webinar Scheduling: Automatically schedule your events with the API.
  • Analytics and Reports: Use the API to generate real-time reporting data,
    giving you better insight into how your webinars are performing.
  • Integration with Third-Party Channels: Connect with social media networks and
    other third-party services with the API to give your webinars a boost.

Whether you want to create automated messages, gamification elements, and
custom themes, or harness the analytics data and integrate third-party
channels, the WebinarGeek API has the features you need to create a unique and
successful webinar.

Trigger Code

import webinargeek from "../../webinargeek.app.mjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";

export default {
  name: "New Payment",
  version: "0.0.3",
  key: "webinargeek-new-payment",
  description: "Emit new event on each new payment.",
  type: "source",
  dedupe: "unique",
  props: {
    webinargeek,
    db: "$.service.db",
    timer: {
      type: "$.interface.timer",
      static: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
  },
  methods: {
    emitEvent(body) {
      const data = body?.entity ?? body;

      this._setLastPaymentId(data.id);

      this.$emit(data, {
        id: data.id,
        summary: `New payment with id ${data.id}`,
        ts: Date.parse(data.created_at),
      });
    },
    _setLastPaymentId(id) {
      this.db.set("lastPaymentId", id);
    },
    _getLastPaymentId() {
      return this.db.get("lastPaymentId");
    },
  },
  hooks: {
    async deploy() {
      const payments = await this.webinargeek.getPayments({
        params: {
          per_page: 10,
        },
      });

      payments.reverse().forEach(this.emitEvent);
    },
  },
  async run() {
    const lastPaymentId = this._getLastPaymentId();

    let page = 1;

    while (page >= 0) {
      const payments = await this.webinargeek.getPayments({
        params: {
          page,
          per_page: 100,
        },
      });

      payments.reverse().forEach(this.emitEvent);

      if (
        payments.length < 100 ||
        payments.filter((payment) => payment.id === lastPaymentId)
      ) {
        return;
      }

      page++;
    }
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
WebinarGeekwebinargeekappThis component uses the WebinarGeek app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Trigger Authentication

WebinarGeek uses API keys for authentication. When you connect your WebinarGeek account, Pipedream securely stores the keys so you can easily authenticate to WebinarGeek APIs in both code and no-code steps.

To get your API Key, open WebinarGeek and sign in to your account. Click on your name in the upper right corner and select Integrations. On the right menu bellow Advanced, click API.

About WebinarGeek

The best webinar software. Grow your business, engage with customers and be an expert with professional webinars.

Action

Description:Retrieve records in a view with automatic pagination. Optionally sort and filter results. Only available for Enterprise accounts.
Version:0.0.1
Key:airtable_oauth-list-records-in-view

Action Code

import common from "../common/common.mjs";
import commonList from "../common/common-list.mjs";

export default {
  key: "airtable_oauth-list-records-in-view",
  name: "List Records in View",
  description: "Retrieve records in a view with automatic pagination. Optionally sort and filter results. Only available for Enterprise accounts.",
  type: "action",
  version: "0.0.1",
  ...commonList,
  props: {
    ...common.props,
    viewId: {
      propDefinition: [
        common.props.airtable,
        "viewId",
        ({
          baseId, tableId,
        }) => ({
          baseId: baseId.value,
          tableId: tableId.value,
        }),
      ],
      withLabel: true,
    },
    ...commonList.props,
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
AirtableairtableappThis component uses the Airtable app.
BasebaseIdstringSelect a value from the drop down menu.
TabletableIdstringSelect a value from the drop down menu.
ViewviewIdstringSelect a value from the drop down menu.
Sort: FieldsortFieldstringSelect a value from the drop down menu.
Sort: DirectionsortDirectionstringSelect a value from the drop down menu:{ "label": "Descending", "value": "desc" }{ "label": "Ascending", "value": "asc" }
Max RecordsmaxRecordsinteger

Optionally limit the maximum number of records to return. Leave blank to retrieve all records.

Filter by FormulafilterByFormulastring

Optionally provide a formula used to filter records. The formula will be evaluated for each record, and if the result is not 0, false, "", NaN, [], or #Error! the record will be included in the response. For example, to only include records where Name isn't empty, pass NOT({Name} = '').

Action Authentication

Airtable uses OAuth authentication. When you connect your Airtable account, Pipedream will open a popup window where you can sign into Airtable and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Airtable API.

Pipedream requests the following authorization scopes when you connect your account:

data.records:readdata.records:writedata.recordComments:readdata.recordComments:writeschema.bases:readschema.bases:writewebhook:manage

About Airtable

Connect everything. Achieve anything. Accelerate work and unlock potential with powerful apps that connect your data, workflows and teams.

More Ways to Connect Airtable + WebinarGeek

Create Comment with Airtable API on New Payment from WebinarGeek API
WebinarGeek + Airtable
 
Try it
Create Comment with Airtable API on New Registration from WebinarGeek API
WebinarGeek + Airtable
 
Try it
Create Comment with Airtable API on New Replay Watched from WebinarGeek API
WebinarGeek + Airtable
 
Try it
Create Comment with Airtable API on New Unsubscribed from WebinarGeek API
WebinarGeek + Airtable
 
Try it
Create Comment with Airtable API on New Webinar Watched from WebinarGeek API
WebinarGeek + Airtable
 
Try it
New Payment from the WebinarGeek API

Emit new event on each new payment.

 
Try it
New Registration from the WebinarGeek API

Emit new event on each new registration.

 
Try it
New Replay Watched from the WebinarGeek API

Emit new event on each replay is watched.

 
Try it
New Unsubscribed from the WebinarGeek API

Emit new event on each new unsubscribed.

 
Try it
New Webinar Watched from the WebinarGeek API

Emit new event on each webinar is watched.

 
Try it
Create Comment with the Airtable API

Create a new comment on a record. See the documentation

 
Try it
Create Field with the Airtable API

Create a new field in a table. See the documentation

 
Try it
Create Multiple Records with the Airtable API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.

 
Try it
Create Single Record with the Airtable API

Adds a record to a table.

 
Try it
Create Single Record Or Update with the Airtable API

Updates a record if recordId is provided or adds a record to a table.

 
Try it

Explore Other Apps

1
-
12
of
1400+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Beta
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Beta
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
Telegram Bot
Telegram Bot
Telegram is a cloud-based instant messaging and voice over IP service
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular apps like ChatGPT and DALL·E 2.
Google Sheets
Google Sheets
With Google Sheets, you can create, edit, and collaborate wherever you are
Discord
Discord
Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.