← GoTo Webinar + Trello integrations

Create Card with Trello API on Webinar Changed (Instant) from GoTo Webinar API

Pipedream makes it easy to connect APIs for Trello, GoTo Webinar and 3,000+ other apps remarkably fast.

Trigger workflow on
Webinar Changed (Instant) from the GoTo Webinar API
Next, do this
Create Card with the Trello API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

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

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a GoTo Webinar trigger and Trello 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 Webinar Changed (Instant) trigger
    1. Connect your GoTo Webinar account
  3. Configure the Create Card action
    1. Connect your Trello account
    2. Select a Board
    3. Configure Name
    4. Optional- Configure Description
    5. Optional- Select a Position
    6. Optional- Configure Due Date
    7. Optional- Configure Due Complete
    8. Select a List
    9. Optional- Select one or more Members
    10. Optional- Select one or more Labels
    11. Optional- Configure File Path or URL
    12. Optional- Select a Mime Type
    13. Optional- Select a Copy Card
    14. Optional- Select one or more Copy From Source
    15. Optional- Configure Address
    16. Optional- Configure Location Name
    17. Optional- Configure Coordinates
    18. Optional- Select one or more Custom Field Ids
    19. Optional- Configure syncDir
  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 when a webinar is changed.
Version:0.0.1
Key:gotowebinar-webinar-changed

GoTo Webinar Overview

The GoTo Webinar API enables you to automate interactions with your webinars on GoTo Webinar. With this API, you can create, update, and retrieve your webinars, manage registrants, send reminders, and extract analytics data, all through programmatic means. Integrating it with Pipedream, you can build powerful workflows that trigger on specific events, take action using the API, and connect with other apps to streamline your webinar management process.

Trigger Code

import common from "../common/base.mjs";
import events from "../common/events.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "gotowebinar-webinar-changed",
  name: "Webinar Changed (Instant)",
  description: "Emit new event when a webinar is changed.",
  version: "0.0.1",
  dedupe: "unique",
  type: "source",
  methods: {
    ...common.methods,
    getEventName() {
      return events.WEBINAR_CHANGED;
    },
    generateMeta({
      eventKey, webinarKey, registrationDate,
    }) {
      return {
        id: eventKey,
        summary: `A webinar with key ${webinarKey} has been successfully changed!`,
        ts: registrationDate,
      };
    },
  },
  sampleEmit,
};

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
GoTo WebinargotowebinarappThis component uses the GoTo Webinar app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.

Trigger Authentication

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

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

About GoTo Webinar

Your all-in-one virtual event platform. With customizable modes, interactive features, insightful analytics, powerful integrations, and flexible pricing, our intuitive webinar platform has everything you need to host virtual events of all sizes.

Action

Description:Creates a new card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-post).
Version:1.0.4
Key:trello-create-card

Trello Overview

Trello's API lets you craft workflows around managing boards, lists, cards, and users. With Pipedream, you can automate Trello tasks, like syncing cards with external databases, updating checklists, and posting notifications to other platforms. It enables seamless connection with other apps, fostering productivity by automating routine board operations, card management, and team notifications.

Action Code

import { getFileStreamAndMetadata } from "@pipedream/platform";
import FormData from "form-data";
import constants from "../../common/constants.mjs";
import app from "../../trello.app.mjs";

export default {
  key: "trello-create-card",
  name: "Create Card",
  description: "Creates a new card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-post).",
  version: "1.0.4",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: false,
  },
  type: "action",
  props: {
    app,
    board: {
      propDefinition: [
        app,
        "board",
      ],
    },
    name: {
      propDefinition: [
        app,
        "name",
      ],
      description: "The name of the card.",
      optional: false,
    },
    desc: {
      propDefinition: [
        app,
        "desc",
      ],
    },
    pos: {
      propDefinition: [
        app,
        "pos",
      ],
      description: "The position of the new card. `top`, `bottom`, or a positive float",
    },
    due: {
      propDefinition: [
        app,
        "due",
      ],
    },
    dueComplete: {
      propDefinition: [
        app,
        "dueComplete",
      ],
    },
    idList: {
      propDefinition: [
        app,
        "lists",
        (c) => ({
          board: c.board,
        }),
      ],
      type: "string",
      label: "List",
      description: "The ID of the list the card should be created in.",
      optional: false,
    },
    idMembers: {
      propDefinition: [
        app,
        "member",
        (c) => ({
          board: c.board,
        }),
      ],
      type: "string[]",
      label: "Members",
      description: "Array of member IDs to add to the card",
      optional: true,
    },
    idLabels: {
      propDefinition: [
        app,
        "label",
        (c) => ({
          board: c.board,
        }),
      ],
      type: "string[]",
      label: "Labels",
      description: "Array of labelIDs to add to the card",
      optional: true,
    },
    file: {
      type: "string",
      label: "File Path or URL",
      description: "Provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFile.pdf).",
      optional: true,
    },
    mimeType: {
      propDefinition: [
        app,
        "mimeType",
      ],
      optional: true,
    },
    idCardSource: {
      propDefinition: [
        app,
        "cards",
        (c) => ({
          board: c.board,
        }),
      ],
      type: "string",
      label: "Copy Card",
      description: "Specify an existing card to copy contents from. Keep in mind that if you copy a card, the **File Attachment Path**, **File Attachment URL** and **File Attachment Type** fields will be ignored.",
      reloadProps: true,
    },
    keepFromSource: {
      type: "string[]",
      label: "Copy From Source",
      description: "Specify which properties to copy from the source card",
      options: constants.CARD_KEEP_FROM_SOURCE_PROPERTIES,
      optional: true,
      hidden: true,
    },
    address: {
      propDefinition: [
        app,
        "address",
      ],
    },
    locationName: {
      propDefinition: [
        app,
        "locationName",
      ],
    },
    coordinates: {
      propDefinition: [
        app,
        "coordinates",
      ],
    },
    customFieldIds: {
      propDefinition: [
        app,
        "customFieldIds",
        (c) => ({
          boardId: c.board,
        }),
      ],
      reloadProps: true,
    },
    syncDir: {
      type: "dir",
      accessMode: "read",
      sync: true,
      optional: true,
    },
  },
  async additionalProps(existingProps) {
    const props = {};

    existingProps.keepFromSource.hidden = !this.idCardSource;

    if (!this.customFieldIds?.length) {
      return props;
    }
    for (const customFieldId of this.customFieldIds) {
      const customField = await this.app.getCustomField({
        customFieldId,
      });
      props[customFieldId] = {
        type: "string",
        label: `Value for Custom Field - ${customField.name}`,
      };
      if (customField.type === "list") {
        props[customFieldId].options = customField.options?.map((option) => ({
          value: option.id,
          label: option.value.text,
        })) || [];
      }
    }
    return props;
  },
  methods: {
    async getCustomFieldItems($) {
      const customFieldItems = [];
      for (const customFieldId of this.customFieldIds) {
        const customField = await this.app.getCustomField({
          $,
          customFieldId,
        });
        const customFieldItem = {
          idCustomField: customFieldId,
        };
        if (customField.type === "list") {
          customFieldItem.idValue = this[customFieldId];
        } else if (customField.type === "checkbox") {
          customFieldItem.value = {
            checked: this[customFieldId],
          };
        } else {
          customFieldItem.value = {
            [customField.type]: this[customFieldId],
          };
        }
        customFieldItems.push(customFieldItem);
      }
      return customFieldItems;
    },
  },
  async run({ $ }) {
    const {
      name,
      desc,
      pos,
      due,
      dueComplete,
      idList,
      idMembers,
      idLabels,
      mimeType,
      file,
      idCardSource,
      keepFromSource,
      address,
      locationName,
      coordinates,
      customFieldIds,
    } = this;

    let response;
    const params = {
      name,
      desc,
      pos,
      due,
      dueComplete,
      idList,
      idMembers,
      idLabels,
      mimeType,
      idCardSource,
      keepFromSource: keepFromSource?.join(","),
      address,
      locationName,
      coordinates,
    };

    if (file) {
      const form = new FormData();
      const {
        stream, metadata,
      } = await getFileStreamAndMetadata(file);
      form.append("fileSource", stream, {
        contentType: metadata.contentType,
        knownLength: metadata.size,
        filename: metadata.name,
      });
      response = await this.app.createCard({
        $,
        params,
        headers: form.getHeaders(),
        data: form,
      });
    } else {
      response = await this.app.createCard({
        $,
        params,
      });
    }

    if (customFieldIds) {
      const customFieldItems = await this.getCustomFieldItems($);
      const customFields = await this.app.updateCustomFields({
        $,
        cardId: response.id,
        data: {
          customFieldItems,
        },
      });
      response.customFields = customFields;
    }

    $.export("$summary", `Successfully created card \`${response.id}\`.`);

    return response;
  },
};

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
TrelloappappThis component uses the Trello app.
BoardboardstringSelect a value from the drop down menu.
Namenamestring

The name of the card.

Descriptiondescstring

The description for the card

PositionposstringSelect a value from the drop down menu:topbottom
Due Dateduestring

Card due date in ISO format

Due CompletedueCompleteboolean

Flag that indicates if dueDate expired

ListidListstringSelect a value from the drop down menu.
MembersidMembersstring[]Select a value from the drop down menu.
LabelsidLabelsstring[]Select a value from the drop down menu.
File Path or URLfilestring

Provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFile.pdf).

Mime TypemimeTypestringSelect a value from the drop down menu.
Copy CardidCardSourcestringSelect a value from the drop down menu.
Addressaddressstring

For use with/by the Map Power-Up

Location NamelocationNamestring

For use with/by the Map Power-Up

Coordinatescoordinatesstring

Latitude, longitude coordinates. For use with/by the Map Power-Up. Should take the form lat, long.

Custom Field IdscustomFieldIdsstring[]Select a value from the drop down menu.
syncDirsyncDirdir

Action Authentication

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

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

readwrite

About Trello

Trello is the flexible work management tool that empowers all teams to plan, track, and accomplish their work, their way.

More Ways to Connect Trello + GoTo Webinar

Create Registrant with GoTo Webinar API on Card Archived (Instant) from Trello API
Trello + GoTo Webinar
 
Try it
Create Registrant with GoTo Webinar API on Card Due Date Reminder from Trello API
Trello + GoTo Webinar
 
Try it
Create Registrant with GoTo Webinar API on Card Moved (Instant) from Trello API
Trello + GoTo Webinar
 
Try it
Create Registrant with GoTo Webinar API on Card Updates (Instant) from Trello API
Trello + GoTo Webinar
 
Try it
Create Registrant with GoTo Webinar API on Custom Webhook Events (Instant) from Trello API
Trello + GoTo Webinar
 
Try it
New Registrant Added (Instant) from the GoTo Webinar API

Emit new event when a registrant is added.

 
Try it
New Registrant Joined (Instant) from the GoTo Webinar API

Emit new event when a registrant joins a weginar.

 
Try it
New Webinar Created (Instant) from the GoTo Webinar API

Emit new event when a webinar is created.

 
Try it
Webinar Changed (Instant) from the GoTo Webinar API

Emit new event when a webinar is changed.

 
Try it
Card Moved (Instant) from the Trello API

Emit new event each time a card is moved to a list.

 
Try it
Create Registrant with the GoTo Webinar API

Register an attendee for a scheduled webinar. See the documentation

 
Try it
Create Webinar with the GoTo Webinar API

Creates a single session webinar, a sequence of webinars or a series of webinars depending on the type field in the body. See the documentation

 
Try it
Add Attachment To Card with the Trello API

Adds a file attachment on a card. See the documentation

 
Try it
Add Checklist with the Trello API

Adds a new checklist to a card. See the documentation

 
Try it
Add Comment with the Trello API

Create a new comment on a specific card. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
3,000+
apps by most popular

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.
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.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
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 models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Premium
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Premium
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Premium
Klaviyo unifies your data, channels, and AI agents in one platform—text, WhatsApp, email marketing, and more—driving growth with every interaction.
Zendesk
Zendesk
Premium
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
Premium
Beta
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.