← GatherUp + Typeform integrations

Create an Image with Typeform API on New Feedback Received from GatherUp API

Pipedream makes it easy to connect APIs for Typeform, GatherUp and 2,500+ other apps remarkably fast.

Trigger workflow on
New Feedback Received from the GatherUp API
Next, do this
Create an Image with the Typeform 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 GatherUp trigger and Typeform 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 Feedback Received trigger
    1. Connect your GatherUp account
    2. Configure timer
  3. Configure the Create an Image action
    1. Connect your Typeform account
    2. Configure File name
    3. Optional- Configure Base64 image
    4. Optional- Configure Image's URL
  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 feedback received.
Version:0.0.2
Key:gatherup-new-feedback-received

GatherUp Overview

The GatherUp API facilitates the automation of customer feedback and review management processes. It enables seamless integration with Pipedream's serverless platform for creating workflows that can aggregate reviews, trigger actions based on customer feedback, and enhance reputation management. By leveraging the GatherUp API, businesses can automate the collection and analysis of customer reviews, respond to feedback promptly, and harness insights to improve service quality and customer satisfaction.

Trigger Code

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

export default {
  ...common,
  name: "New Feedback Received",
  version: "0.0.2",
  key: "gatherup-new-feedback-received",
  description: "Emit new event on each new feedback received.",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    emitEvent(data) {
      this.$emit(data, {
        id: data.feedbackId,
        summary: `New feedback received with id ${data.feedbackId}`,
        ts: Date.parse(data.dateOfReview),
      });
    },
    async getResources(args = {}) {
      const {
        data: resources, perPage,
      } = await this.gatherup.getFeedbacks(args);

      return {
        resources,
        perPage,
      };
    },
  },
};

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
GatherUpgatherupappThis component uses the GatherUp app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Trigger Authentication

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

You can get your Client ID and your Bearer Token on the Account Owner Details page.

About GatherUp

GatherUp™ is a customer experience and online review engine that enables insights, empowers marketing and converts customers.

Action

Description:Adds an image in your Typeform account. [See the docs here](https://developer.typeform.com/create/reference/create-image/)
Version:0.0.2
Key:typeform-create-image

Typeform Overview

The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.

Action Code

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

export default {
  key: "typeform-create-image",
  name: "Create an Image",
  description: "Adds an image in your Typeform account. [See the docs here](https://developer.typeform.com/create/reference/create-image/)",
  type: "action",
  version: "0.0.2",
  props: {
    typeform,
    fileName: {
      type: "string",
      label: "File name",
      description: "File name for the image",
    },
    image: {
      type: "string",
      label: "Base64 image",
      description: "Base64 code for the image. Note that base64 encoders may add descriptors to the code (such as `data:image/png;base64,`). Do not include these descriptors in your image string---include only the base64 code. We also recommend that you don't paste the exact string value into this property box. Instead you can [pass an expression](https://pipedream.com/docs/workflows/steps/params/#entering-expressions) that references a variable from a previous step such as `{{steps.nodejs.$return_value}}`.",
      optional: true,
    },
    url: {
      type: "string",
      label: "Image's URL",
      description: "URL of the image to be added in your Typeform account",
      optional: true,
    },
  },
  async run({ $ }) {
    if (!this.image && !this.url) {
      throw new Error("This action requires either Base64 image or Image's URL. Please enter one or the other above.");
    }

    const data = {
      file_name: this.fileName,
      image: this.image,
      url: this.url,
    };

    const resp = await this.typeform.createImage({
      $,
      data,
    });

    $.export("$summary", "Successfully added a new image to your account");

    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
TypeformtypeformappThis component uses the Typeform app.
File namefileNamestring

File name for the image

Base64 imageimagestring

Base64 code for the image. Note that base64 encoders may add descriptors to the code (such as data:image/png;base64,). Do not include these descriptors in your image string---include only the base64 code. We also recommend that you don't paste the exact string value into this property box. Instead you can pass an expression that references a variable from a previous step such as {{steps.nodejs.$return_value}}.

Image's URLurlstring

URL of the image to be added in your Typeform account

Action Authentication

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

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

offlineaccounts:readforms:writeforms:readimages:writeimages:readthemes:writethemes:readresponses:readresponses:writewebhooks:readwebhooks:writeworkspaces:readworkspaces:write

About Typeform

Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.

More Ways to Connect Typeform + GatherUp

Create Customer with GatherUp API on New Submission from Typeform API
Typeform + GatherUp
 
Try it
Create a Form with Typeform API on New Feedback Received from GatherUp API
GatherUp + Typeform
 
Try it
Delete Form with Typeform API on New Feedback Received from GatherUp API
GatherUp + Typeform
 
Try it
Delete an Image with Typeform API on New Feedback Received from GatherUp API
GatherUp + Typeform
 
Try it
Duplicate a Form with Typeform API on New Feedback Received from GatherUp API
GatherUp + Typeform
 
Try it
New Feedback Received from the GatherUp API

Emit new event on each new feedback received.

 
Try it
New Negative Feedback Received from the GatherUp API

Emit new event on each new negative feedback received.

 
Try it
New Positive Feedback Received from the GatherUp API

Emit new event on each new positive feedback received.

 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Create Customer with the GatherUp API

Creates a customer. See docs here

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. See the docs here

 
Try it
Create an Image with the Typeform API

Adds an image in your Typeform account. See the docs here

 
Try it
Delete an Image with the Typeform API

Deletes an image from your Typeform account. See the docs here

 
Try it
Delete Form with the Typeform API

Select a form to be deleted. See the docs here

 
Try it

Explore Other Apps

1
-
0
of
2,500+
apps by most popular