← Jotform + Trengo integrations

Send A Message with Trengo API on New Submission (Instant) from Jotform API

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

Trigger workflow on
New Submission (Instant) from the Jotform API
Next, do this
Send A Message with the Trengo 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 Jotform trigger and Trengo 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 Submission (Instant) trigger
    1. Connect your Jotform account
    2. Select a Form
  3. Configure the Send A Message action
    1. Connect your Trengo account
    2. Select a Channel ID
    3. Configure Identifier
    4. Configure Name
    5. Configure Message
    6. Optional- Configure Email Subject
  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 form is submitted
Version:0.0.6
Key:jotform-new-submission

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

Trigger Code

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

export default {
  key: "jotform-new-submission",
  name: "New Submission (Instant)",
  description: "Emit new event when a form is submitted",
  version: "0.0.6",
  type: "source",
  props: {
    jotform,
    formId: {
      propDefinition: [
        jotform,
        "formId",
      ],
    },
    http: "$.interface.http",
  },
  dedupe: "unique",
  hooks: {
    async deploy() {
      const { content: form } = await this.jotform.getForm(this.formId);
      const { content: submissions } = await this.jotform.getFormSubmissions({
        formId: this.formId,
        params: {
          limit: 25,
          orderby: "created_at",
        },
      });
      for (const submission of submissions.reverse()) {
        const body = {
          formID: form.id,
          formTitle: form.title,
          ip: submission.ip,
          submissionID: submission.id,
          username: form.username,
        };
        const meta = {
          id: submission.id,
          summary: form.title,
          ts: Date.now(),
        };
        this.$emit(body, meta);
      }
    },
    async activate() {
      return (await this.jotform.createHook({
        endpoint: this.http.endpoint,
        formId: this.formId,
      }));
    },
    async deactivate() {
      return (await this.jotform.deleteHook({
        endpoint: this.http.endpoint,
        formId: this.formId,
      }));
    },
  },
  async run(event) {
    const { body } = event;
    body.formData = JSON.parse(body.rawRequest);

    this.$emit(body, {
      summary: body.formTitle || JSON.stringify(body),
      id: body.submissionID,
      ts: Date.now(),
    });
  },
};

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

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

Action

Description:This action can be used to easily send a message or an email without having to think about contacts or tickets, [See the docs](https://developers.trengo.com/reference/send-a-message-1)
Version:0.0.1
Key:trengo-send-a-message

Trengo Overview

You can build amazing customer service experiences by using the Trengo API.
It's the platform to help teams work better together, and offers features to
optimize your customer conversation. For example, you can use Trengo to:

  • Improve customer service by leveraging automation for fast and personalized
    responses
  • Increase efficiency by optimizing operational workflows
  • Gather insights from customer conversations to improve customer service
  • Automate conversations like welcome messages and error notifications
  • Filter and manage incoming conversations to make sure the right person
    provides the right answers

These are just some of the examples of what you can do with the Trengo API.
With the Trengo platform, you can make sure your customer conversations deliver
the best possible outcomes, consistently.

Action Code

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

export default {
  type: "action",
  key: "trengo-send-a-message",
  version: "0.0.1",
  name: "Send A Message",
  description: "This action can be used to easily send a message or an email without having to think about contacts or tickets, [See the docs](https://developers.trengo.com/reference/send-a-message-1)",
  props: {
    app,
    channelId: {
      propDefinition: [
        app,
        "channelId",
      ],
    },
    contactIdentifier: {
      propDefinition: [
        app,
        "contactIdentifier",
      ],
      description: "The destination of the message. Based on the `Channel ID` this must be en email address or phone number.",
    },
    contactName: {
      propDefinition: [
        app,
        "contactName",
      ],
      description: "The name of the contact. Only used when the contact does not already exists.",
    },
    message: {
      propDefinition: [
        app,
        "message",
      ],
    },
    emailSubject: {
      propDefinition: [
        app,
        "emailSubject",
      ],
    },
  },
  async run ({ $ }) {
    const resp = await this.app.sendMessage({
      $,
      data: {
        channel_id: this.channelId,
        contact_identifier: this.contactIdentifier,
        contact_name: this.contactName,
        message: this.message,
        email_subject: this.emailSubject,
      },
    });
    $.export("$summary", "The message has been sent");
    return resp;
  },
};

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
TrengoappappThis component uses the Trengo app.
Channel IDchannelIdintegerSelect a value from the drop down menu.
IdentifiercontactIdentifierstring

The destination of the message. Based on the Channel ID this must be en email address or phone number.

NamecontactNamestring

The name of the contact. Only used when the contact does not already exists.

Messagemessagestring

The message send to the receiver.

Email SubjectemailSubjectstring

The subject of the message. Only used when the message is an email.

Action Authentication

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

You need a personal access token to access the API and to perform actions on your behalf. Your personal access token needs to be send trough an Authorization Bearer request. See docs.

About Trengo

Customer service software

More Ways to Connect Trengo + Jotform

Get Form Submissions with Jotform API on New Inbound Message Event from Trengo API
Trengo + Jotform
 
Try it
Get Monthly User Usage with Jotform API on New Inbound Message Event from Trengo API
Trengo + Jotform
 
Try it
Get User Submissions with Jotform API on New Inbound Message Event from Trengo API
Trengo + Jotform
 
Try it
Get Form Submissions with Jotform API on New Internal Note Event from Trengo API
Trengo + Jotform
 
Try it
Get Monthly User Usage with Jotform API on New Internal Note Event from Trengo API
Trengo + Jotform
 
Try it
New Submission (Instant) from the Jotform API

Emit new event when a form is submitted

 
Try it
New Inbound Message Event from the Trengo API

Emit new events when an inbound message received. See the docs here

 
Try it
New Internal Note Event from the Trengo API

Emit new events when a internal note added. See the docs here

 
Try it
New Outbound Message Event from the Trengo API

Emit new events when an outbound message sent. See the docs here

 
Try it
New Phone Call Ended Event from the Trengo API

Emit new events when an phone call ended. See the docs here

 
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
Get User Submissions with the Jotform API

Gets a list of all submissions for all forms on the account See the docs here

 
Try it
Create Contact with the Trengo API

Creates a contact. If a contact with given identifier already exists, returns it. See the docs

 
Try it
Find Contacts with the Trengo API

Finds contacts with the given term. See the docs

 
Try it