← Discord + Jotform integrations

Get Form Submissions with Jotform API on New Message (Instant) from Discord API

Pipedream makes it easy to connect APIs for Jotform, Discord and 1000+ other apps remarkably fast.

Trigger workflow on
New Message (Instant) from the Discord API
Next, do this
Get Form Submissions with the Jotform 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 Discord trigger and Jotform 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 Message (Instant) trigger
    1. Connect your Discord account
    2. Configure Channels
    3. Configure discordApphook
  3. Configure the Get Form Submissions action
    1. Connect your Jotform account
    2. Select a Form
    3. Configure Max Items
  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 for each message posted to one or more channels in a Discord server
Version:1.0.1
Key:discord-new-message

Discord Overview

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Trigger Code

import discord from "../../discord.app.mjs";

export default {
  type: "source",
  key: "discord-new-message",
  name: "New Message (Instant)",
  description: "Emit new event for each message posted to one or more channels in a Discord server",
  version: "1.0.1",
  dedupe: "unique",
  props: {
    discord,
    channels: {
      type: "$.discord.channel[]",
      appProp: "discord",
      label: "Channels",
      description: "Select the channel(s) you'd like to be notified for",
    },
    // eslint-disable-next-line pipedream/props-label,pipedream/props-description
    discordApphook: {
      type: "$.interface.apphook",
      appProp: "discord",
      async eventNames() {
        return this.channels || [];
      },
    },
  },
  async run(event) {
    if (event.guildID != this.discord.$auth.guild_id) {
      return;
    }
    this.$emit(event, {
      id: event.id,
    });
  },
};

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
DiscorddiscordappThis component uses the Discord app.
Channelschannels$.discord.channel[]

Select the channel(s) you'd like to be notified for

discordApphook$.interface.apphook

Trigger Authentication

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

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

botemailidentifyguilds

About Discord

Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.

Action

Description:Gets a list of form responses [See the docs here](https://api.jotform.com/docs/#form-id-submissions)
Version:0.0.1
Key:jotform-get-form-submissions

Jotform Overview

Using the Jotform API, you can easily add forms to your website or application.
You can also use the Jotform API to manage your form submissions, gather
insights from your form data, and more.

Here are some examples of what you can build using the Jotform API:

  • A contact form for your website
  • A survey form to collect data from your users
  • A registration form for your events or courses
  • A payment form for your products or services
  • A lead capture form to collect leads from your website visitors

Action Code

import common from "../common.mjs";

export default {
  ...common,
  key: "jotform-get-form-submissions",
  name: "Get Form Submissions",
  description: "Gets a list of form responses [See the docs here](https://api.jotform.com/docs/#form-id-submissions)",
  version: "0.0.1",
  type: "action",
  props: {
    ...common.props,
    formId: {
      propDefinition: [
        common.props.jotform,
        "formId",
      ],
    },
    max: {
      propDefinition: [
        common.props.jotform,
        "max",
      ],
    },
    http: "$.interface.http",
  },
  async run({ $ }) {
    const params = {
      $,
      max: this.max,
      formId: this.formId,
    };
    const submissions = await this.paginate(this.jotform.getFormSubmissions.bind(this), params);
    const results = [];
    for await (const submission of submissions) {
      results.push(submission);
    }
    $.export("$summary", "Successfully retrieved list of form submissions");
    return results;
  },
};

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
JotformjotformappThis component uses the Jotform app.
FormformIdstringSelect a value from the drop down menu.
Max Itemsmaxinteger

Maximum number of items to return

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.

Action Authentication

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

  1. Get your Jotform API key. The API key must grant Pipedream Full Permissions. Pipedream requires this level of access to automatically register webhooks for your selected forms so you can trigger Pipedream workflows on form submissions.

apikey

  1. For the region field, enter api if none of the below apply.
  • If "Europe Datacenter" is selected in the "Data" section of your Jotform account, enter eu-api
  • If your account is HIPAA-compliant, enter hipaa-api
  • If you have an Enterprise Jotform account, enter the subdomain (if your Jotform URL is https://acmecompany.jotform.com, your subdomain is acmecompany)

About Jotform

Online form builder for business

More Ways to Connect Jotform + Discord

Get Monthly User Usage with Jotform API on New Message from Discord API
Discord + Jotform
 
Try it
Get User Submissions with Jotform API on New Message from Discord API
Discord + Jotform
 
Try it
Get Form Submissions with Jotform API on Message Deleted (Instant) from Discord API
Discord + Jotform
 
Try it
Get Monthly User Usage with Jotform API on Message Deleted (Instant) from Discord API
Discord + Jotform
 
Try it
Get User Submissions with Jotform API on Message Deleted (Instant) from Discord API
Discord + Jotform
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Reaction Added (Instant) from the Discord API

Emit new event for each reaction added to a message

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
Try it
Get Form Submissions with the Jotform API

Gets a list of form responses See the docs here

 
Try it
Get Monthly User Usage with the Jotform API

Gets number of form submissions received this month. Also, get number of SSL form submissions, payment form submissions and upload space used by user See the docs here

 
Try it